File: //proc/thread-self/cwd/backups/btpayments.20250317.sql
/*!999999\- enable the sandbox mode */
-- MariaDB dump 10.19 Distrib 10.11.8-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: btpayments
-- ------------------------------------------------------
-- Server version 10.11.8-MariaDB-ubu2004
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_commentmeta`
--
LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_comments`
--
DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
`comment_author` tinytext NOT NULL,
`comment_author_email` varchar(100) NOT NULL DEFAULT '',
`comment_author_url` varchar(200) NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT 0,
`comment_approved` varchar(20) NOT NULL DEFAULT '1',
`comment_agent` varchar(255) NOT NULL DEFAULT '',
`comment_type` varchar(20) NOT NULL DEFAULT 'comment',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
`user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_comments`
--
LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_e_events`
--
DROP TABLE IF EXISTS `wp_e_events`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_e_events` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`event_data` text DEFAULT NULL,
`created_at` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `created_at_index` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_e_events`
--
LOCK TABLES `wp_e_events` WRITE;
/*!40000 ALTER TABLE `wp_e_events` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_e_events` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_e_notes`
--
DROP TABLE IF EXISTS `wp_e_notes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_e_notes` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`route_url` text DEFAULT NULL COMMENT 'Clean url where the note was created.',
`route_title` varchar(255) DEFAULT NULL,
`route_post_id` bigint(20) unsigned DEFAULT NULL COMMENT 'The post id of the route that the note was created on.',
`post_id` bigint(20) unsigned DEFAULT NULL,
`element_id` varchar(60) DEFAULT NULL COMMENT 'The Elementor element ID the note is attached to.',
`parent_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`author_id` bigint(20) unsigned DEFAULT NULL,
`author_display_name` varchar(250) DEFAULT NULL COMMENT 'Save the author name when the author was deleted.',
`status` varchar(20) NOT NULL DEFAULT 'publish',
`position` text DEFAULT NULL COMMENT 'A JSON string that represents the position of the note inside the element in percentages. e.g. {x:10, y:15}',
`content` longtext DEFAULT NULL,
`is_resolved` tinyint(1) NOT NULL DEFAULT 0,
`is_public` tinyint(1) NOT NULL DEFAULT 1,
`last_activity_at` datetime DEFAULT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `route_url_index` (`route_url`(191)),
KEY `post_id_index` (`post_id`),
KEY `element_id_index` (`element_id`),
KEY `parent_id_index` (`parent_id`),
KEY `author_id_index` (`author_id`),
KEY `status_index` (`status`),
KEY `is_resolved_index` (`is_resolved`),
KEY `is_public_index` (`is_public`),
KEY `created_at_index` (`created_at`),
KEY `updated_at_index` (`updated_at`),
KEY `last_activity_at_index` (`last_activity_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_e_notes`
--
LOCK TABLES `wp_e_notes` WRITE;
/*!40000 ALTER TABLE `wp_e_notes` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_e_notes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_e_notes_users_relations`
--
DROP TABLE IF EXISTS `wp_e_notes_users_relations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_e_notes_users_relations` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`type` varchar(60) NOT NULL COMMENT 'The relation type between user and note (e.g mention, watch, read).',
`note_id` bigint(20) unsigned NOT NULL,
`user_id` bigint(20) unsigned NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `type_index` (`type`),
KEY `note_id_index` (`note_id`),
KEY `user_id_index` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_e_notes_users_relations`
--
LOCK TABLES `wp_e_notes_users_relations` WRITE;
/*!40000 ALTER TABLE `wp_e_notes_users_relations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_e_notes_users_relations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_e_submissions`
--
DROP TABLE IF EXISTS `wp_e_submissions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_e_submissions` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`type` varchar(60) DEFAULT NULL,
`hash_id` varchar(60) NOT NULL,
`main_meta_id` bigint(20) unsigned NOT NULL COMMENT 'Id of main field. to represent the main meta field',
`post_id` bigint(20) unsigned NOT NULL,
`referer` varchar(500) NOT NULL,
`referer_title` varchar(300) DEFAULT NULL,
`element_id` varchar(20) NOT NULL,
`form_name` varchar(60) NOT NULL,
`campaign_id` bigint(20) unsigned NOT NULL,
`user_id` bigint(20) unsigned DEFAULT NULL,
`user_ip` varchar(46) NOT NULL,
`user_agent` text NOT NULL,
`actions_count` int(11) DEFAULT 0,
`actions_succeeded_count` int(11) DEFAULT 0,
`status` varchar(20) NOT NULL,
`is_read` tinyint(1) NOT NULL DEFAULT 0,
`meta` text DEFAULT NULL,
`created_at_gmt` datetime NOT NULL,
`updated_at_gmt` datetime NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `hash_id_unique_index` (`hash_id`),
KEY `main_meta_id_index` (`main_meta_id`),
KEY `hash_id_index` (`hash_id`),
KEY `type_index` (`type`),
KEY `post_id_index` (`post_id`),
KEY `element_id_index` (`element_id`),
KEY `campaign_id_index` (`campaign_id`),
KEY `user_id_index` (`user_id`),
KEY `user_ip_index` (`user_ip`),
KEY `status_index` (`status`),
KEY `is_read_index` (`is_read`),
KEY `created_at_gmt_index` (`created_at_gmt`),
KEY `updated_at_gmt_index` (`updated_at_gmt`),
KEY `created_at_index` (`created_at`),
KEY `updated_at_index` (`updated_at`),
KEY `referer_index` (`referer`(191)),
KEY `referer_title_index` (`referer_title`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_e_submissions`
--
LOCK TABLES `wp_e_submissions` WRITE;
/*!40000 ALTER TABLE `wp_e_submissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_e_submissions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_e_submissions_actions_log`
--
DROP TABLE IF EXISTS `wp_e_submissions_actions_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_e_submissions_actions_log` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`submission_id` bigint(20) unsigned NOT NULL,
`action_name` varchar(60) NOT NULL,
`action_label` varchar(60) DEFAULT NULL,
`status` varchar(20) NOT NULL,
`log` text DEFAULT NULL,
`created_at_gmt` datetime NOT NULL,
`updated_at_gmt` datetime NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `submission_id_index` (`submission_id`),
KEY `action_name_index` (`action_name`),
KEY `status_index` (`status`),
KEY `created_at_gmt_index` (`created_at_gmt`),
KEY `updated_at_gmt_index` (`updated_at_gmt`),
KEY `created_at_index` (`created_at`),
KEY `updated_at_index` (`updated_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_e_submissions_actions_log`
--
LOCK TABLES `wp_e_submissions_actions_log` WRITE;
/*!40000 ALTER TABLE `wp_e_submissions_actions_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_e_submissions_actions_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_e_submissions_values`
--
DROP TABLE IF EXISTS `wp_e_submissions_values`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_e_submissions_values` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`submission_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`key` varchar(60) DEFAULT NULL,
`value` longtext DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `submission_id_index` (`submission_id`),
KEY `key_index` (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_e_submissions_values`
--
LOCK TABLES `wp_e_submissions_values` WRITE;
/*!40000 ALTER TABLE `wp_e_submissions_values` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_e_submissions_values` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) NOT NULL DEFAULT '',
`link_name` varchar(255) NOT NULL DEFAULT '',
`link_image` varchar(255) NOT NULL DEFAULT '',
`link_target` varchar(25) NOT NULL DEFAULT '',
`link_description` varchar(255) NOT NULL DEFAULT '',
`link_visible` varchar(20) NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT 1,
`link_rating` int(11) NOT NULL DEFAULT 0,
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) NOT NULL DEFAULT '',
`link_notes` mediumtext NOT NULL,
`link_rss` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_links`
--
LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_options`
--
DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(191) NOT NULL DEFAULT '',
`option_value` longtext NOT NULL,
`autoload` varchar(20) NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`),
KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=49472 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_options`
--
LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES
(1,'siteurl','https://btpayments.io','yes'),
(2,'home','https://btpayments.io','yes'),
(3,'blogname','BTPayments','yes'),
(4,'blogdescription','','yes'),
(5,'users_can_register','0','yes'),
(6,'admin_email','wangjun@bt-miners.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','9','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:193:{s:46:\"um-download/([^/]+)/([^/]+)/([^/]+)/([^/]+)/?$\";s:111:\"index.php?um_action=download&um_form=$matches[1]&um_field=$matches[2]&um_user=$matches[3]&um_verify=$matches[4]\";s:15:\"user/([^/]+)/?$\";s:42:\"index.php?page_id=2696&um_user=$matches[1]\";s:17:\"account/([^/]+)?$\";s:41:\"index.php?page_id=2701&um_tab=$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:36:\"jet-menu/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"jet-menu/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"jet-menu/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"jet-menu/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"jet-menu/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"jet-menu/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"jet-menu/([^/]+)/embed/?$\";s:41:\"index.php?jet-menu=$matches[1]&embed=true\";s:29:\"jet-menu/([^/]+)/trackback/?$\";s:35:\"index.php?jet-menu=$matches[1]&tb=1\";s:37:\"jet-menu/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?jet-menu=$matches[1]&paged=$matches[2]\";s:44:\"jet-menu/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?jet-menu=$matches[1]&cpage=$matches[2]\";s:34:\"jet-menu/([^/]+)/um-api(/(.*))?/?$\";s:49:\"index.php?jet-menu=$matches[1]&um-api=$matches[3]\";s:40:\"jet-menu/[^/]+/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:51:\"jet-menu/[^/]+/attachment/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:33:\"jet-menu/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?jet-menu=$matches[1]&page=$matches[2]\";s:25:\"jet-menu/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"jet-menu/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"jet-menu/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"jet-menu/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"jet-menu/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"jet-menu/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";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:32:\"category/(.+?)/um-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&um-api=$matches[3]\";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:29:\"tag/([^/]+)/um-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&um-api=$matches[3]\";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:42:\"e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:35:\"e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:43:\"e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:50:\"e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:40:\"e-landing-page/([^/]+)/um-api(/(.*))?/?$\";s:55:\"index.php?e-landing-page=$matches[1]&um-api=$matches[3]\";s:46:\"e-landing-page/[^/]+/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:57:\"e-landing-page/[^/]+/attachment/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:39:\"e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:31:\"e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e-landing-page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"um_form/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"um_form/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"um_form/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"um_form/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"um_form/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"um_form/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"um_form/([^/]+)/embed/?$\";s:40:\"index.php?um_form=$matches[1]&embed=true\";s:28:\"um_form/([^/]+)/trackback/?$\";s:34:\"index.php?um_form=$matches[1]&tb=1\";s:36:\"um_form/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?um_form=$matches[1]&paged=$matches[2]\";s:43:\"um_form/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?um_form=$matches[1]&cpage=$matches[2]\";s:33:\"um_form/([^/]+)/um-api(/(.*))?/?$\";s:48:\"index.php?um_form=$matches[1]&um-api=$matches[3]\";s:39:\"um_form/[^/]+/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:50:\"um_form/[^/]+/attachment/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:32:\"um_form/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?um_form=$matches[1]&page=$matches[2]\";s:24:\"um_form/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"um_form/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"um_form/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"um_form/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"um_form/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"um_form/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"um_directory/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"um_directory/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"um_directory/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"um_directory/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"um_directory/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"um_directory/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"um_directory/([^/]+)/embed/?$\";s:45:\"index.php?um_directory=$matches[1]&embed=true\";s:33:\"um_directory/([^/]+)/trackback/?$\";s:39:\"index.php?um_directory=$matches[1]&tb=1\";s:41:\"um_directory/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?um_directory=$matches[1]&paged=$matches[2]\";s:48:\"um_directory/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?um_directory=$matches[1]&cpage=$matches[2]\";s:38:\"um_directory/([^/]+)/um-api(/(.*))?/?$\";s:53:\"index.php?um_directory=$matches[1]&um-api=$matches[3]\";s:44:\"um_directory/[^/]+/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:55:\"um_directory/[^/]+/attachment/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:37:\"um_directory/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?um_directory=$matches[1]&page=$matches[2]\";s:29:\"um_directory/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"um_directory/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"um_directory/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"um_directory/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"um_directory/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"um_directory/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:12:\"sitemap\\.xml\";s:24:\"index.php??sitemap=index\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=50&cpage=$matches[1]\";s:17:\"um-api(/(.*))?/?$\";s:29:\"index.php?&um-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:26:\"comments/um-api(/(.*))?/?$\";s:29:\"index.php?&um-api=$matches[2]\";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:29:\"search/(.+)/um-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&um-api=$matches[3]\";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:32:\"author/([^/]+)/um-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&um-api=$matches[3]\";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:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/um-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&um-api=$matches[5]\";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:41:\"([0-9]{4})/([0-9]{1,2})/um-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&um-api=$matches[4]\";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:28:\"([0-9]{4})/um-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&um-api=$matches[3]\";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:25:\"(.?.+?)/um-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&um-api=$matches[3]\";s:31:\".?.+?/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:25:\"([^/]+)/um-api(/(.*))?/?$\";s:45:\"index.php?name=$matches[1]&um-api=$matches[3]\";s:31:\"[^/]+/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:42:\"[^/]+/attachment/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";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:14:{i:0;s:36:\"contact-form-7/wp-contact-form-7.php\";i:1;s:31:\"elementor-pro/elementor-pro.php\";i:2;s:23:\"elementor/elementor.php\";i:3;s:50:\"google-analytics-for-wordpress/googleanalytics.php\";i:4;s:25:\"jet-blocks/jet-blocks.php\";i:5;s:21:\"jet-blog/jet-blog.php\";i:6;s:29:\"jet-elements/jet-elements.php\";i:7;s:21:\"jet-menu/jet-menu.php\";i:8;s:41:\"jet-plugins-wizard/jet-plugins-wizard.php\";i:9;s:21:\"jet-tabs/jet-tabs.php\";i:10;s:33:\"jet-theme-core/jet-theme-core.php\";i:11;s:25:\"jet-tricks/jet-tricks.php\";i:12;s:25:\"kava-extra/kava-extra.php\";i:13;s:34:\"tidio-live-chat/tidio-elements.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:4:{i:0;s:67:\"/www/btpayments_753/public/wp-content/themes/calcue-child/style.css\";i:2;s:59:\"/www/btpayments_753/public/wp-content/themes/kava/style.css\";i:3;s:71:\"/www/btpayments_753/public/wp-content/themes/calcue-child/functions.php\";i:4;s:0:\"\";}','no'),
(40,'template','kava','yes'),
(41,'stylesheet','calcue-child','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'),
(79,'uninstall_plugins','a:3:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:48:\"wp-live-chat-software-for-wordpress/livechat.php\";s:46:\"LiveChat\\LiveChatAdmin::uninstall_hook_handler\";s:50:\"google-analytics-for-wordpress/googleanalytics.php\";s:35:\"monsterinsights_lite_uninstall_hook\";}','no'),
(80,'timezone_string','','yes'),
(81,'page_for_posts','56','yes'),
(82,'page_on_front','50','yes'),
(83,'default_post_format','0','yes'),
(84,'link_manager_enabled','0','yes'),
(85,'finished_splitting_shared_terms','1','yes'),
(86,'site_icon','3050','on'),
(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','1733286141','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:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:68:{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:26:\"create_notes_elementor-pro\";b:1;s:24:\"edit_notes_elementor-pro\";b:1;s:26:\"delete_notes_elementor-pro\";b:1;s:24:\"read_notes_elementor-pro\";b:1;s:31:\"edit_others_notes_elementor-pro\";b:1;s:33:\"delete_others_notes_elementor-pro\";b:1;s:39:\"read_others_private_notes_elementor-pro\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),
(102,'fresh_site','0','off'),
(103,'user_count','5','off'),
(106,'cron','a:11:{i:1742187185;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1742194385;a:4:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1742201636;a:2:{s:46:\"monsterinsights_feature_feedback_clear_expired\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s:40:\"monsterinsights_feature_feedback_checkin\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1742226303;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1742268653;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1742269219;a:3:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1742280785;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1742297333;a:1:{s:35:\"monsterinsights_usage_tracking_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1742355007;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1742795825;a:1:{s:36:\"monsterinsights_email_summaries_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:39:\"monsterinsights_email_summaries_monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2592000;}}}s:7:\"version\";i:2;}','on'),
(121,'kinsta-cache-settings','a:3:{s:7:\"version\";s:3:\"2.0\";s:7:\"options\";a:1:{s:16:\"additional_paths\";a:2:{s:5:\"group\";a:0:{}s:6:\"single\";a:0:{}}}s:5:\"rules\";a:0:{}}','yes'),
(122,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.5.3\";s:5:\"files\";a:500:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:20:\"block/editor-rtl.css\";i:29;s:24:\"block/editor-rtl.min.css\";i:30;s:16:\"block/editor.css\";i:31;s:20:\"block/editor.min.css\";i:32;s:21:\"button/editor-rtl.css\";i:33;s:25:\"button/editor-rtl.min.css\";i:34;s:17:\"button/editor.css\";i:35;s:21:\"button/editor.min.css\";i:36;s:20:\"button/style-rtl.css\";i:37;s:24:\"button/style-rtl.min.css\";i:38;s:16:\"button/style.css\";i:39;s:20:\"button/style.min.css\";i:40;s:22:\"buttons/editor-rtl.css\";i:41;s:26:\"buttons/editor-rtl.min.css\";i:42;s:18:\"buttons/editor.css\";i:43;s:22:\"buttons/editor.min.css\";i:44;s:21:\"buttons/style-rtl.css\";i:45;s:25:\"buttons/style-rtl.min.css\";i:46;s:17:\"buttons/style.css\";i:47;s:21:\"buttons/style.min.css\";i:48;s:22:\"calendar/style-rtl.css\";i:49;s:26:\"calendar/style-rtl.min.css\";i:50;s:18:\"calendar/style.css\";i:51;s:22:\"calendar/style.min.css\";i:52;s:25:\"categories/editor-rtl.css\";i:53;s:29:\"categories/editor-rtl.min.css\";i:54;s:21:\"categories/editor.css\";i:55;s:25:\"categories/editor.min.css\";i:56;s:24:\"categories/style-rtl.css\";i:57;s:28:\"categories/style-rtl.min.css\";i:58;s:20:\"categories/style.css\";i:59;s:24:\"categories/style.min.css\";i:60;s:19:\"code/editor-rtl.css\";i:61;s:23:\"code/editor-rtl.min.css\";i:62;s:15:\"code/editor.css\";i:63;s:19:\"code/editor.min.css\";i:64;s:18:\"code/style-rtl.css\";i:65;s:22:\"code/style-rtl.min.css\";i:66;s:14:\"code/style.css\";i:67;s:18:\"code/style.min.css\";i:68;s:18:\"code/theme-rtl.css\";i:69;s:22:\"code/theme-rtl.min.css\";i:70;s:14:\"code/theme.css\";i:71;s:18:\"code/theme.min.css\";i:72;s:22:\"columns/editor-rtl.css\";i:73;s:26:\"columns/editor-rtl.min.css\";i:74;s:18:\"columns/editor.css\";i:75;s:22:\"columns/editor.min.css\";i:76;s:21:\"columns/style-rtl.css\";i:77;s:25:\"columns/style-rtl.min.css\";i:78;s:17:\"columns/style.css\";i:79;s:21:\"columns/style.min.css\";i:80;s:29:\"comment-content/style-rtl.css\";i:81;s:33:\"comment-content/style-rtl.min.css\";i:82;s:25:\"comment-content/style.css\";i:83;s:29:\"comment-content/style.min.css\";i:84;s:30:\"comment-template/style-rtl.css\";i:85;s:34:\"comment-template/style-rtl.min.css\";i:86;s:26:\"comment-template/style.css\";i:87;s:30:\"comment-template/style.min.css\";i:88;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:89;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:90;s:38:\"comments-pagination-numbers/editor.css\";i:91;s:42:\"comments-pagination-numbers/editor.min.css\";i:92;s:34:\"comments-pagination/editor-rtl.css\";i:93;s:38:\"comments-pagination/editor-rtl.min.css\";i:94;s:30:\"comments-pagination/editor.css\";i:95;s:34:\"comments-pagination/editor.min.css\";i:96;s:33:\"comments-pagination/style-rtl.css\";i:97;s:37:\"comments-pagination/style-rtl.min.css\";i:98;s:29:\"comments-pagination/style.css\";i:99;s:33:\"comments-pagination/style.min.css\";i:100;s:29:\"comments-title/editor-rtl.css\";i:101;s:33:\"comments-title/editor-rtl.min.css\";i:102;s:25:\"comments-title/editor.css\";i:103;s:29:\"comments-title/editor.min.css\";i:104;s:23:\"comments/editor-rtl.css\";i:105;s:27:\"comments/editor-rtl.min.css\";i:106;s:19:\"comments/editor.css\";i:107;s:23:\"comments/editor.min.css\";i:108;s:22:\"comments/style-rtl.css\";i:109;s:26:\"comments/style-rtl.min.css\";i:110;s:18:\"comments/style.css\";i:111;s:22:\"comments/style.min.css\";i:112;s:20:\"cover/editor-rtl.css\";i:113;s:24:\"cover/editor-rtl.min.css\";i:114;s:16:\"cover/editor.css\";i:115;s:20:\"cover/editor.min.css\";i:116;s:19:\"cover/style-rtl.css\";i:117;s:23:\"cover/style-rtl.min.css\";i:118;s:15:\"cover/style.css\";i:119;s:19:\"cover/style.min.css\";i:120;s:22:\"details/editor-rtl.css\";i:121;s:26:\"details/editor-rtl.min.css\";i:122;s:18:\"details/editor.css\";i:123;s:22:\"details/editor.min.css\";i:124;s:21:\"details/style-rtl.css\";i:125;s:25:\"details/style-rtl.min.css\";i:126;s:17:\"details/style.css\";i:127;s:21:\"details/style.min.css\";i:128;s:20:\"embed/editor-rtl.css\";i:129;s:24:\"embed/editor-rtl.min.css\";i:130;s:16:\"embed/editor.css\";i:131;s:20:\"embed/editor.min.css\";i:132;s:19:\"embed/style-rtl.css\";i:133;s:23:\"embed/style-rtl.min.css\";i:134;s:15:\"embed/style.css\";i:135;s:19:\"embed/style.min.css\";i:136;s:19:\"embed/theme-rtl.css\";i:137;s:23:\"embed/theme-rtl.min.css\";i:138;s:15:\"embed/theme.css\";i:139;s:19:\"embed/theme.min.css\";i:140;s:19:\"file/editor-rtl.css\";i:141;s:23:\"file/editor-rtl.min.css\";i:142;s:15:\"file/editor.css\";i:143;s:19:\"file/editor.min.css\";i:144;s:18:\"file/style-rtl.css\";i:145;s:22:\"file/style-rtl.min.css\";i:146;s:14:\"file/style.css\";i:147;s:18:\"file/style.min.css\";i:148;s:23:\"footnotes/style-rtl.css\";i:149;s:27:\"footnotes/style-rtl.min.css\";i:150;s:19:\"footnotes/style.css\";i:151;s:23:\"footnotes/style.min.css\";i:152;s:23:\"freeform/editor-rtl.css\";i:153;s:27:\"freeform/editor-rtl.min.css\";i:154;s:19:\"freeform/editor.css\";i:155;s:23:\"freeform/editor.min.css\";i:156;s:22:\"gallery/editor-rtl.css\";i:157;s:26:\"gallery/editor-rtl.min.css\";i:158;s:18:\"gallery/editor.css\";i:159;s:22:\"gallery/editor.min.css\";i:160;s:21:\"gallery/style-rtl.css\";i:161;s:25:\"gallery/style-rtl.min.css\";i:162;s:17:\"gallery/style.css\";i:163;s:21:\"gallery/style.min.css\";i:164;s:21:\"gallery/theme-rtl.css\";i:165;s:25:\"gallery/theme-rtl.min.css\";i:166;s:17:\"gallery/theme.css\";i:167;s:21:\"gallery/theme.min.css\";i:168;s:20:\"group/editor-rtl.css\";i:169;s:24:\"group/editor-rtl.min.css\";i:170;s:16:\"group/editor.css\";i:171;s:20:\"group/editor.min.css\";i:172;s:19:\"group/style-rtl.css\";i:173;s:23:\"group/style-rtl.min.css\";i:174;s:15:\"group/style.css\";i:175;s:19:\"group/style.min.css\";i:176;s:19:\"group/theme-rtl.css\";i:177;s:23:\"group/theme-rtl.min.css\";i:178;s:15:\"group/theme.css\";i:179;s:19:\"group/theme.min.css\";i:180;s:21:\"heading/style-rtl.css\";i:181;s:25:\"heading/style-rtl.min.css\";i:182;s:17:\"heading/style.css\";i:183;s:21:\"heading/style.min.css\";i:184;s:19:\"html/editor-rtl.css\";i:185;s:23:\"html/editor-rtl.min.css\";i:186;s:15:\"html/editor.css\";i:187;s:19:\"html/editor.min.css\";i:188;s:20:\"image/editor-rtl.css\";i:189;s:24:\"image/editor-rtl.min.css\";i:190;s:16:\"image/editor.css\";i:191;s:20:\"image/editor.min.css\";i:192;s:19:\"image/style-rtl.css\";i:193;s:23:\"image/style-rtl.min.css\";i:194;s:15:\"image/style.css\";i:195;s:19:\"image/style.min.css\";i:196;s:19:\"image/theme-rtl.css\";i:197;s:23:\"image/theme-rtl.min.css\";i:198;s:15:\"image/theme.css\";i:199;s:19:\"image/theme.min.css\";i:200;s:29:\"latest-comments/style-rtl.css\";i:201;s:33:\"latest-comments/style-rtl.min.css\";i:202;s:25:\"latest-comments/style.css\";i:203;s:29:\"latest-comments/style.min.css\";i:204;s:27:\"latest-posts/editor-rtl.css\";i:205;s:31:\"latest-posts/editor-rtl.min.css\";i:206;s:23:\"latest-posts/editor.css\";i:207;s:27:\"latest-posts/editor.min.css\";i:208;s:26:\"latest-posts/style-rtl.css\";i:209;s:30:\"latest-posts/style-rtl.min.css\";i:210;s:22:\"latest-posts/style.css\";i:211;s:26:\"latest-posts/style.min.css\";i:212;s:18:\"list/style-rtl.css\";i:213;s:22:\"list/style-rtl.min.css\";i:214;s:14:\"list/style.css\";i:215;s:18:\"list/style.min.css\";i:216;s:25:\"media-text/editor-rtl.css\";i:217;s:29:\"media-text/editor-rtl.min.css\";i:218;s:21:\"media-text/editor.css\";i:219;s:25:\"media-text/editor.min.css\";i:220;s:24:\"media-text/style-rtl.css\";i:221;s:28:\"media-text/style-rtl.min.css\";i:222;s:20:\"media-text/style.css\";i:223;s:24:\"media-text/style.min.css\";i:224;s:19:\"more/editor-rtl.css\";i:225;s:23:\"more/editor-rtl.min.css\";i:226;s:15:\"more/editor.css\";i:227;s:19:\"more/editor.min.css\";i:228;s:30:\"navigation-link/editor-rtl.css\";i:229;s:34:\"navigation-link/editor-rtl.min.css\";i:230;s:26:\"navigation-link/editor.css\";i:231;s:30:\"navigation-link/editor.min.css\";i:232;s:29:\"navigation-link/style-rtl.css\";i:233;s:33:\"navigation-link/style-rtl.min.css\";i:234;s:25:\"navigation-link/style.css\";i:235;s:29:\"navigation-link/style.min.css\";i:236;s:33:\"navigation-submenu/editor-rtl.css\";i:237;s:37:\"navigation-submenu/editor-rtl.min.css\";i:238;s:29:\"navigation-submenu/editor.css\";i:239;s:33:\"navigation-submenu/editor.min.css\";i:240;s:25:\"navigation/editor-rtl.css\";i:241;s:29:\"navigation/editor-rtl.min.css\";i:242;s:21:\"navigation/editor.css\";i:243;s:25:\"navigation/editor.min.css\";i:244;s:24:\"navigation/style-rtl.css\";i:245;s:28:\"navigation/style-rtl.min.css\";i:246;s:20:\"navigation/style.css\";i:247;s:24:\"navigation/style.min.css\";i:248;s:23:\"nextpage/editor-rtl.css\";i:249;s:27:\"nextpage/editor-rtl.min.css\";i:250;s:19:\"nextpage/editor.css\";i:251;s:23:\"nextpage/editor.min.css\";i:252;s:24:\"page-list/editor-rtl.css\";i:253;s:28:\"page-list/editor-rtl.min.css\";i:254;s:20:\"page-list/editor.css\";i:255;s:24:\"page-list/editor.min.css\";i:256;s:23:\"page-list/style-rtl.css\";i:257;s:27:\"page-list/style-rtl.min.css\";i:258;s:19:\"page-list/style.css\";i:259;s:23:\"page-list/style.min.css\";i:260;s:24:\"paragraph/editor-rtl.css\";i:261;s:28:\"paragraph/editor-rtl.min.css\";i:262;s:20:\"paragraph/editor.css\";i:263;s:24:\"paragraph/editor.min.css\";i:264;s:23:\"paragraph/style-rtl.css\";i:265;s:27:\"paragraph/style-rtl.min.css\";i:266;s:19:\"paragraph/style.css\";i:267;s:23:\"paragraph/style.min.css\";i:268;s:25:\"post-author/style-rtl.css\";i:269;s:29:\"post-author/style-rtl.min.css\";i:270;s:21:\"post-author/style.css\";i:271;s:25:\"post-author/style.min.css\";i:272;s:33:\"post-comments-form/editor-rtl.css\";i:273;s:37:\"post-comments-form/editor-rtl.min.css\";i:274;s:29:\"post-comments-form/editor.css\";i:275;s:33:\"post-comments-form/editor.min.css\";i:276;s:32:\"post-comments-form/style-rtl.css\";i:277;s:36:\"post-comments-form/style-rtl.min.css\";i:278;s:28:\"post-comments-form/style.css\";i:279;s:32:\"post-comments-form/style.min.css\";i:280;s:27:\"post-content/editor-rtl.css\";i:281;s:31:\"post-content/editor-rtl.min.css\";i:282;s:23:\"post-content/editor.css\";i:283;s:27:\"post-content/editor.min.css\";i:284;s:23:\"post-date/style-rtl.css\";i:285;s:27:\"post-date/style-rtl.min.css\";i:286;s:19:\"post-date/style.css\";i:287;s:23:\"post-date/style.min.css\";i:288;s:27:\"post-excerpt/editor-rtl.css\";i:289;s:31:\"post-excerpt/editor-rtl.min.css\";i:290;s:23:\"post-excerpt/editor.css\";i:291;s:27:\"post-excerpt/editor.min.css\";i:292;s:26:\"post-excerpt/style-rtl.css\";i:293;s:30:\"post-excerpt/style-rtl.min.css\";i:294;s:22:\"post-excerpt/style.css\";i:295;s:26:\"post-excerpt/style.min.css\";i:296;s:34:\"post-featured-image/editor-rtl.css\";i:297;s:38:\"post-featured-image/editor-rtl.min.css\";i:298;s:30:\"post-featured-image/editor.css\";i:299;s:34:\"post-featured-image/editor.min.css\";i:300;s:33:\"post-featured-image/style-rtl.css\";i:301;s:37:\"post-featured-image/style-rtl.min.css\";i:302;s:29:\"post-featured-image/style.css\";i:303;s:33:\"post-featured-image/style.min.css\";i:304;s:34:\"post-navigation-link/style-rtl.css\";i:305;s:38:\"post-navigation-link/style-rtl.min.css\";i:306;s:30:\"post-navigation-link/style.css\";i:307;s:34:\"post-navigation-link/style.min.css\";i:308;s:28:\"post-template/editor-rtl.css\";i:309;s:32:\"post-template/editor-rtl.min.css\";i:310;s:24:\"post-template/editor.css\";i:311;s:28:\"post-template/editor.min.css\";i:312;s:27:\"post-template/style-rtl.css\";i:313;s:31:\"post-template/style-rtl.min.css\";i:314;s:23:\"post-template/style.css\";i:315;s:27:\"post-template/style.min.css\";i:316;s:24:\"post-terms/style-rtl.css\";i:317;s:28:\"post-terms/style-rtl.min.css\";i:318;s:20:\"post-terms/style.css\";i:319;s:24:\"post-terms/style.min.css\";i:320;s:24:\"post-title/style-rtl.css\";i:321;s:28:\"post-title/style-rtl.min.css\";i:322;s:20:\"post-title/style.css\";i:323;s:24:\"post-title/style.min.css\";i:324;s:26:\"preformatted/style-rtl.css\";i:325;s:30:\"preformatted/style-rtl.min.css\";i:326;s:22:\"preformatted/style.css\";i:327;s:26:\"preformatted/style.min.css\";i:328;s:24:\"pullquote/editor-rtl.css\";i:329;s:28:\"pullquote/editor-rtl.min.css\";i:330;s:20:\"pullquote/editor.css\";i:331;s:24:\"pullquote/editor.min.css\";i:332;s:23:\"pullquote/style-rtl.css\";i:333;s:27:\"pullquote/style-rtl.min.css\";i:334;s:19:\"pullquote/style.css\";i:335;s:23:\"pullquote/style.min.css\";i:336;s:23:\"pullquote/theme-rtl.css\";i:337;s:27:\"pullquote/theme-rtl.min.css\";i:338;s:19:\"pullquote/theme.css\";i:339;s:23:\"pullquote/theme.min.css\";i:340;s:39:\"query-pagination-numbers/editor-rtl.css\";i:341;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:342;s:35:\"query-pagination-numbers/editor.css\";i:343;s:39:\"query-pagination-numbers/editor.min.css\";i:344;s:31:\"query-pagination/editor-rtl.css\";i:345;s:35:\"query-pagination/editor-rtl.min.css\";i:346;s:27:\"query-pagination/editor.css\";i:347;s:31:\"query-pagination/editor.min.css\";i:348;s:30:\"query-pagination/style-rtl.css\";i:349;s:34:\"query-pagination/style-rtl.min.css\";i:350;s:26:\"query-pagination/style.css\";i:351;s:30:\"query-pagination/style.min.css\";i:352;s:25:\"query-title/style-rtl.css\";i:353;s:29:\"query-title/style-rtl.min.css\";i:354;s:21:\"query-title/style.css\";i:355;s:25:\"query-title/style.min.css\";i:356;s:20:\"query/editor-rtl.css\";i:357;s:24:\"query/editor-rtl.min.css\";i:358;s:16:\"query/editor.css\";i:359;s:20:\"query/editor.min.css\";i:360;s:19:\"quote/style-rtl.css\";i:361;s:23:\"quote/style-rtl.min.css\";i:362;s:15:\"quote/style.css\";i:363;s:19:\"quote/style.min.css\";i:364;s:19:\"quote/theme-rtl.css\";i:365;s:23:\"quote/theme-rtl.min.css\";i:366;s:15:\"quote/theme.css\";i:367;s:19:\"quote/theme.min.css\";i:368;s:23:\"read-more/style-rtl.css\";i:369;s:27:\"read-more/style-rtl.min.css\";i:370;s:19:\"read-more/style.css\";i:371;s:23:\"read-more/style.min.css\";i:372;s:18:\"rss/editor-rtl.css\";i:373;s:22:\"rss/editor-rtl.min.css\";i:374;s:14:\"rss/editor.css\";i:375;s:18:\"rss/editor.min.css\";i:376;s:17:\"rss/style-rtl.css\";i:377;s:21:\"rss/style-rtl.min.css\";i:378;s:13:\"rss/style.css\";i:379;s:17:\"rss/style.min.css\";i:380;s:21:\"search/editor-rtl.css\";i:381;s:25:\"search/editor-rtl.min.css\";i:382;s:17:\"search/editor.css\";i:383;s:21:\"search/editor.min.css\";i:384;s:20:\"search/style-rtl.css\";i:385;s:24:\"search/style-rtl.min.css\";i:386;s:16:\"search/style.css\";i:387;s:20:\"search/style.min.css\";i:388;s:20:\"search/theme-rtl.css\";i:389;s:24:\"search/theme-rtl.min.css\";i:390;s:16:\"search/theme.css\";i:391;s:20:\"search/theme.min.css\";i:392;s:24:\"separator/editor-rtl.css\";i:393;s:28:\"separator/editor-rtl.min.css\";i:394;s:20:\"separator/editor.css\";i:395;s:24:\"separator/editor.min.css\";i:396;s:23:\"separator/style-rtl.css\";i:397;s:27:\"separator/style-rtl.min.css\";i:398;s:19:\"separator/style.css\";i:399;s:23:\"separator/style.min.css\";i:400;s:23:\"separator/theme-rtl.css\";i:401;s:27:\"separator/theme-rtl.min.css\";i:402;s:19:\"separator/theme.css\";i:403;s:23:\"separator/theme.min.css\";i:404;s:24:\"shortcode/editor-rtl.css\";i:405;s:28:\"shortcode/editor-rtl.min.css\";i:406;s:20:\"shortcode/editor.css\";i:407;s:24:\"shortcode/editor.min.css\";i:408;s:24:\"site-logo/editor-rtl.css\";i:409;s:28:\"site-logo/editor-rtl.min.css\";i:410;s:20:\"site-logo/editor.css\";i:411;s:24:\"site-logo/editor.min.css\";i:412;s:23:\"site-logo/style-rtl.css\";i:413;s:27:\"site-logo/style-rtl.min.css\";i:414;s:19:\"site-logo/style.css\";i:415;s:23:\"site-logo/style.min.css\";i:416;s:27:\"site-tagline/editor-rtl.css\";i:417;s:31:\"site-tagline/editor-rtl.min.css\";i:418;s:23:\"site-tagline/editor.css\";i:419;s:27:\"site-tagline/editor.min.css\";i:420;s:25:\"site-title/editor-rtl.css\";i:421;s:29:\"site-title/editor-rtl.min.css\";i:422;s:21:\"site-title/editor.css\";i:423;s:25:\"site-title/editor.min.css\";i:424;s:24:\"site-title/style-rtl.css\";i:425;s:28:\"site-title/style-rtl.min.css\";i:426;s:20:\"site-title/style.css\";i:427;s:24:\"site-title/style.min.css\";i:428;s:26:\"social-link/editor-rtl.css\";i:429;s:30:\"social-link/editor-rtl.min.css\";i:430;s:22:\"social-link/editor.css\";i:431;s:26:\"social-link/editor.min.css\";i:432;s:27:\"social-links/editor-rtl.css\";i:433;s:31:\"social-links/editor-rtl.min.css\";i:434;s:23:\"social-links/editor.css\";i:435;s:27:\"social-links/editor.min.css\";i:436;s:26:\"social-links/style-rtl.css\";i:437;s:30:\"social-links/style-rtl.min.css\";i:438;s:22:\"social-links/style.css\";i:439;s:26:\"social-links/style.min.css\";i:440;s:21:\"spacer/editor-rtl.css\";i:441;s:25:\"spacer/editor-rtl.min.css\";i:442;s:17:\"spacer/editor.css\";i:443;s:21:\"spacer/editor.min.css\";i:444;s:20:\"spacer/style-rtl.css\";i:445;s:24:\"spacer/style-rtl.min.css\";i:446;s:16:\"spacer/style.css\";i:447;s:20:\"spacer/style.min.css\";i:448;s:20:\"table/editor-rtl.css\";i:449;s:24:\"table/editor-rtl.min.css\";i:450;s:16:\"table/editor.css\";i:451;s:20:\"table/editor.min.css\";i:452;s:19:\"table/style-rtl.css\";i:453;s:23:\"table/style-rtl.min.css\";i:454;s:15:\"table/style.css\";i:455;s:19:\"table/style.min.css\";i:456;s:19:\"table/theme-rtl.css\";i:457;s:23:\"table/theme-rtl.min.css\";i:458;s:15:\"table/theme.css\";i:459;s:19:\"table/theme.min.css\";i:460;s:23:\"tag-cloud/style-rtl.css\";i:461;s:27:\"tag-cloud/style-rtl.min.css\";i:462;s:19:\"tag-cloud/style.css\";i:463;s:23:\"tag-cloud/style.min.css\";i:464;s:28:\"template-part/editor-rtl.css\";i:465;s:32:\"template-part/editor-rtl.min.css\";i:466;s:24:\"template-part/editor.css\";i:467;s:28:\"template-part/editor.min.css\";i:468;s:27:\"template-part/theme-rtl.css\";i:469;s:31:\"template-part/theme-rtl.min.css\";i:470;s:23:\"template-part/theme.css\";i:471;s:27:\"template-part/theme.min.css\";i:472;s:30:\"term-description/style-rtl.css\";i:473;s:34:\"term-description/style-rtl.min.css\";i:474;s:26:\"term-description/style.css\";i:475;s:30:\"term-description/style.min.css\";i:476;s:27:\"text-columns/editor-rtl.css\";i:477;s:31:\"text-columns/editor-rtl.min.css\";i:478;s:23:\"text-columns/editor.css\";i:479;s:27:\"text-columns/editor.min.css\";i:480;s:26:\"text-columns/style-rtl.css\";i:481;s:30:\"text-columns/style-rtl.min.css\";i:482;s:22:\"text-columns/style.css\";i:483;s:26:\"text-columns/style.min.css\";i:484;s:19:\"verse/style-rtl.css\";i:485;s:23:\"verse/style-rtl.min.css\";i:486;s:15:\"verse/style.css\";i:487;s:19:\"verse/style.min.css\";i:488;s:20:\"video/editor-rtl.css\";i:489;s:24:\"video/editor-rtl.min.css\";i:490;s:16:\"video/editor.css\";i:491;s:20:\"video/editor.min.css\";i:492;s:19:\"video/style-rtl.css\";i:493;s:23:\"video/style-rtl.min.css\";i:494;s:15:\"video/style.css\";i:495;s:19:\"video/style.min.css\";i:496;s:19:\"video/theme-rtl.css\";i:497;s:23:\"video/theme-rtl.min.css\";i:498;s:15:\"video/theme.css\";i:499;s:19:\"video/theme.min.css\";}}','yes'),
(124,'recovery_keys','a:0:{}','off'),
(126,'theme_mods_twentytwentyfour','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1716953413;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','no'),
(175,'finished_updating_comment_type','1','yes'),
(182,'https_detection_errors','a:0:{}','off'),
(183,'_transient_health-check-site-status-result','{\"good\":19,\"recommended\":4,\"critical\":0}','yes'),
(215,'current_theme','Calcue','yes'),
(216,'theme_mods_hello-elementor','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:6:\"menu-1\";i:3;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1717058047;s:4:\"data\";a:1:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}}}}','no'),
(217,'theme_switched','','yes'),
(218,'hello_theme_version','3.0.2','yes'),
(225,'_site_transient_wp_plugin_dependencies_plugin_data','a:0:{}','off'),
(227,'elementor_font_display','swap','yes'),
(230,'recently_activated','a:0:{}','off'),
(231,'elementor_version','3.21.8','yes'),
(232,'elementor_install_history','a:1:{s:6:\"3.21.8\";i:1716953454;}','yes'),
(233,'elementor_events_db_version','1.0.0','no'),
(235,'elementor_onboarded','1','yes'),
(236,'elementor_connect_site_key','09cabb581fee89cff3d6eb44ab88a8b5','yes'),
(237,'elementor_allow_tracking','yes','yes'),
(238,'elementor_tracker_last_send','1742009461','yes'),
(241,'_elementor_installed_time','1716953558','yes'),
(242,'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'),
(243,'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'),
(250,'_elementor_notifications_data','a:2:{s:7:\"timeout\";i:1733030552;s:5:\"value\";s:11988:\"[{\"id\":\"black-friday-24\",\"title\":\"Get up to 30% off Elementor Pro Plugin plans\",\"description\":\"Don\\u2019t wait \\u2014 Black Friday deals are live! Save up to 30% on the plan that\\u2019s right for you\",\"topic\":\"Black Friday\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/BF-notification.png\",\"chipTags\":[\"Sale\"],\"cta\":\"Upgrade & Save\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-black-friday-24\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"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\":\"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\"}]]},{\"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\":\"element-caching-3.22\",\"title\":\"Accelerate Loading Times with Element Caching\",\"description\":\"Ensure a smooth and engaging experience for visitors by activating Element Caching.\",\"topic\":\"Elementor 3.22\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/performance-caching.png\",\"chipTags\":[\"Performance\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-element-caching-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"element-caching-3.22\",\"title\":\"Accelerate Loading Times with Element Caching\",\"description\":\"Ensure a smooth and engaging experience for visitors by activating Element Caching.\",\"topic\":\"Elementor 3.22\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/performance-caching.png\",\"chipTags\":[\"Performance\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-element-caching-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"off-canvas-3.22\",\"title\":\"Build Interactive Layouts with the New Off-Canvas Widget\",\"description\":\"Tigger containers from a connected link to allow them to slide into view anywhere on the page.\",\"topic\":\"Elementor Pro 3.22\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/off-canvas.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-off-canvas-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"off-canvas-3.22\",\"title\":\"Build Interactive Layouts with the New Off-Canvas Widget\",\"description\":\"Tigger containers from a connected link to allow them to slide into view anywhere on the page.\",\"topic\":\"Elementor Pro 3.22\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/off-canvas.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-off-canvas-blog\\/\",\"readMoreText\":\"Learn More\",\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-off-canvas\\/\\/\"},{\"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\":\"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\":\"display-conditions-dynamic-content-3.20\",\"title\":\"Display Conditions for Dynamic Content\",\"description\":\"Transform your single post and page templates into dynamic designs that fit their content by setting display conditions based on Dynamic Tags, including native WordPress Custom Fields.\",\"topic\":\"Version Pro 3.20\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/dynamic-content-pro-3.20.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-display-conditions-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"display-conditions-dynamic-content-3.20\",\"title\":\"Display Content on Your Terms: Decide When, Where, and by Who the Content is Viewed\",\"description\":\"Tailor the content on your page to visitors based on various rules to create a powerful experience.\",\"topic\":\"Version Pro 3.20\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/display-conditions-3.20.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-display-conditions-blog\\/\",\"readMoreText\":\"Learn More\",\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-dispaly-conditions\\/\"},{\"id\":\"elementor-add-ons\",\"title\":\"Exciting Add-Ons & Plugins to Enhance Elementor Websites\",\"description\":\"Uncover a treasure trove of tools from Elementor and others, put together to boost your website\'s capabilities and enhance its overall appeal.\",\"topic\":\"Elementor Add-Ons\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/elementor-add-ons.png\",\"cta\":\"Check it out\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/wp-dash-notification-addons\\/\"}]\";}','off'),
(253,'_elementor_home_screen_data','a:2:{s:7:\"timeout\";i:1731916925;s:5:\"value\";s:8313:\"{\"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&page=popup_templates\",\"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\":\"site-mailer\\/site-mailer.php\",\"title\":\"Site Mailer\",\"url\":\"\",\"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.\",\"button_label\":\"Install\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-mailer.svg\",\"type\":\"wporg\"},{\"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\\/\"}]}\";}','off'),
(258,'elementor_pro_version','3.21.3','yes'),
(259,'elementor_pro_install_history','a:1:{s:6:\"3.21.8\";i:1716954009;}','yes'),
(261,'_elementor_pro_installed_time','1716954009','yes'),
(262,'elementor_submissions_db_version','5','yes'),
(267,'elementor_notes_db_version','5','yes'),
(268,'_elementor_pro_api_requests_lock','a:2:{s:16:\"get_license_data\";i:1733026933;s:11:\"get_version\";i:1741719666;}','yes'),
(269,'elementor_fonts_manager_font_types','a:0:{}','yes'),
(270,'elementor_fonts_manager_fonts','a:0:{}','yes'),
(271,'elementor_custom_icon_sets_config','a:0:{}','yes'),
(280,'elementor_pro_theme_builder_conditions','a:0:{}','yes'),
(281,'elementor_log','a:5:{s:32:\"38d2745972e53e9e3b57c783bf055a52\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2024-05-29 03:47:56\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:51:\"Trying to access array offset on value of type bool\";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:6;s:14:\"\0*\0times_dates\";a:6:{i:0;s:19:\"2024-05-29 03:47:56\";i:1;s:19:\"2024-05-29 03:53:06\";i:2;s:19:\"2024-05-29 03:53:57\";i:3;s:19:\"2024-05-29 03:57:21\";i:4;s:19:\"2024-05-29 03:58:34\";i:5;s:19:\"2024-05-29 03:58:57\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:51:\"Trying to access array offset on value of type bool\";s:4:\"file\";s:83:\"/www/btpayments_753/public/wp-content/plugins/elementor/includes/managers/image.php\";s:4:\"line\";i:113;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:83:\"/www/btpayments_753/public/wp-content/plugins/elementor/includes/managers/image.php\";s:7:\"\0*\0line\";i:113;}s:32:\"58fb37337126433428b9342b4ff6938d\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2024-05-29 03:49:34\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:63:\"Cannot read properties of undefined (reading 'value')\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:14;s:14:\"\0*\0times_dates\";a:14:{i:0;s:19:\"2024-05-29 03:49:34\";i:1;s:19:\"2024-05-29 03:53:01\";i:2;s:19:\"2024-05-29 03:53:24\";i:3;s:19:\"2024-06-07 03:11:36\";i:4;s:19:\"2024-06-07 03:11:57\";i:5;s:19:\"2024-06-07 03:43:03\";i:6;s:19:\"2024-06-07 03:48:25\";i:7;s:19:\"2024-06-07 06:10:58\";i:8;s:19:\"2024-06-07 06:36:09\";i:9;s:19:\"2024-06-07 07:05:18\";i:10;s:19:\"2024-06-07 07:10:54\";i:11;s:19:\"2024-06-07 07:23:22\";i:12;s:19:\"2024-06-07 07:42:01\";i:13;s:19:\"2024-06-07 07:44:49\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1716954574\";s:7:\"message\";s:53:\"Cannot read properties of undefined (reading \'value\')\";s:3:\"url\";s:141:\"https://btpayments.kinsta.cloud/wp-admin/load-scripts.php?c=1&loadchunk_0=jquery-core,jquery-migrate,utils,moxiejs,plupload&ver=6.5.3\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"28760\";}s:7:\"\0*\0file\";s:141:\"https://btpayments.kinsta.cloud/wp-admin/load-scripts.php?c=1&loadchunk_0=jquery-core,jquery-migrate,utils,moxiejs,plupload&ver=6.5.3\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"28760\";}s:32:\"7eba2ec85cd008299e3ea5c46e82492f\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2024-06-04 04:22:43\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:67:\"Cannot read properties of undefined (reading 'localized')\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:17;s:14:\"\0*\0times_dates\";a:17:{i:0;s:19:\"2024-06-04 04:22:43\";i:1;s:19:\"2024-06-04 04:22:43\";i:2;s:19:\"2024-06-04 04:22:43\";i:3;s:19:\"2024-06-04 04:22:43\";i:4;s:19:\"2024-06-04 04:22:43\";i:5;s:19:\"2024-06-04 04:22:43\";i:6;s:19:\"2024-06-04 08:40:19\";i:7;s:19:\"2024-06-04 08:40:19\";i:8;s:19:\"2024-06-04 08:40:19\";i:9;s:19:\"2024-06-04 08:40:19\";i:10;s:19:\"2024-06-04 08:40:19\";i:11;s:19:\"2024-06-04 08:40:19\";i:12;s:19:\"2024-11-18 07:55:15\";i:13;s:19:\"2024-11-18 07:55:16\";i:14;s:19:\"2024-11-18 07:55:16\";i:15;s:19:\"2024-11-18 07:55:16\";i:16;s:19:\"2024-11-18 07:55:17\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1717474963\";s:7:\"message\";s:57:\"Cannot read properties of undefined (reading \'localized\')\";s:3:\"url\";s:95:\"https://btpayments.kinsta.cloud/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.21.8\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:6:\"821594\";}s:7:\"\0*\0file\";s:95:\"https://btpayments.kinsta.cloud/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.21.8\";s:7:\"\0*\0line\";s:1:\"3\";s:9:\"\0*\0column\";s:6:\"821594\";}s:32:\"780d24dc506bdce3ada8389b622f6a11\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2024-10-29 09:58:22\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:74:\"Cannot read properties of null (reading 'getBoundingClientRect')\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-10-29 09:58:22\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1730195902\";s:7:\"message\";s:64:\"Cannot read properties of null (reading \'getBoundingClientRect\')\";s:3:\"url\";s:85:\"https://btpayments.io/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.21.8\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:7:\"1161578\";}s:7:\"\0*\0file\";s:85:\"https://btpayments.io/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.21.8\";s:7:\"\0*\0line\";s:1:\"3\";s:9:\"\0*\0column\";s:7:\"1161578\";}s:32:\"8b940f8cfd06ce2af827f77dc96fed30\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2024-11-18 08:06:02\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:46:\"Undefined array key "editor_post_id"\";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:\"2024-11-18 08:06:02\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:36:\"Undefined array key \"editor_post_id\"\";s:4:\"file\";s:93:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/history/revisions-manager.php\";s:4:\"line\";i:363;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:93:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/history/revisions-manager.php\";s:7:\"\0*\0line\";i:363;}}','off'),
(283,'elementor_controls_usage','a:6:{s:6:\"header\";a:5:{s:7:\"heading\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:10:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:1;s:21:\"typography_font_style\";i:1;s:26:\"typography_text_decoration\";i:1;s:22:\"typography_line_height\";i:1;s:25:\"typography_letter_spacing\";i:1;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_icon_style\";a:3:{s:9:\"icon_size\";i:1;s:11:\"text_indent\";i:1;s:10:\"icon_color\";i:1;}s:17:\"section_icon_list\";a:2:{s:10:\"icon_align\";i:1;s:17:\"icon_align_mobile\";i:1;}s:18:\"section_text_style\";a:10:{s:10:\"text_color\";i:1;s:26:\"icon_typography_typography\";i:1;s:27:\"icon_typography_font_family\";i:1;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_font_weight\";i:1;s:30:\"icon_typography_text_transform\";i:1;s:26:\"icon_typography_font_style\";i:1;s:31:\"icon_typography_text_decoration\";i:1;s:27:\"icon_typography_line_height\";i:1;s:30:\"icon_typography_letter_spacing\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:8:\"flex_gap\";i:2;s:10:\"min_height\";i:2;s:14:\"flex_direction\";i:2;s:16:\"flex_align_items\";i:2;s:20:\"flex_justify_content\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:34:\"background_motion_fx_opacity_range\";i:1;s:26:\"background_motion_fx_range\";i:1;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"section_layout\";a:3:{s:7:\"padding\";i:2;s:7:\"z_index\";i:2;s:6:\"margin\";i:1;}s:15:\"section_effects\";a:1:{s:6:\"sticky\";i:1;}}}}s:15:\"theme-site-logo\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:2;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:6:{s:5:\"width\";i:1;s:22:\"css_filters_brightness\";i:1;s:20:\"css_filters_saturate\";i:1;s:6:\"height\";i:1;s:10:\"object-fit\";i:1;s:5:\"align\";i:1;}s:21:\"section_style_caption\";a:10:{s:10:\"text_color\";i:1;s:29:\"caption_typography_typography\";i:1;s:30:\"caption_typography_font_family\";i:1;s:28:\"caption_typography_font_size\";i:1;s:30:\"caption_typography_font_weight\";i:1;s:33:\"caption_typography_text_transform\";i:1;s:29:\"caption_typography_font_style\";i:1;s:34:\"caption_typography_text_decoration\";i:1;s:30:\"caption_typography_line_height\";i:1;s:33:\"caption_typography_letter_spacing\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:4:\"link\";i:1;}}}}s:8:\"nav-menu\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:5:{s:8:\"dropdown\";i:1;s:10:\"full_width\";i:1;s:14:\"animation_text\";i:1;s:11:\"align_items\";i:1;s:12:\"toggle_align\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_style_main-menu\";a:19:{s:13:\"pointer_width\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:18:\"menu_space_between\";i:1;s:15:\"color_menu_item\";i:1;s:22:\"color_menu_item_active\";i:1;s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:30:\"menu_typography_text_transform\";i:1;s:26:\"menu_typography_font_style\";i:1;s:31:\"menu_typography_text_decoration\";i:1;s:27:\"menu_typography_line_height\";i:1;s:30:\"menu_typography_letter_spacing\";i:1;s:21:\"color_menu_item_hover\";i:1;s:29:\"pointer_color_menu_item_hover\";i:1;s:30:\"pointer_color_menu_item_active\";i:1;s:22:\"nav_menu_divider_color\";i:1;}s:22:\"section_style_dropdown\";a:12:{s:19:\"color_dropdown_item\";i:1;s:30:\"background_color_dropdown_item\";i:1;s:36:\"background_color_dropdown_item_hover\";i:1;s:37:\"background_color_dropdown_item_active\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:31:\"dropdown_typography_font_family\";i:1;s:29:\"dropdown_typography_font_size\";i:1;s:31:\"dropdown_typography_font_weight\";i:1;s:34:\"dropdown_typography_text_transform\";i:1;s:30:\"dropdown_typography_font_style\";i:1;s:35:\"dropdown_typography_text_decoration\";i:1;s:34:\"dropdown_typography_letter_spacing\";i:1;}s:12:\"style_toggle\";a:2:{s:12:\"toggle_color\";i:1;s:23:\"toggle_background_color\";i:1;}}}}}s:7:\"wp-page\";a:16:{s:9:\"container\";a:2:{s:5:\"count\";i:14;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:13:{s:11:\"boxed_width\";i:6;s:10:\"min_height\";i:3;s:20:\"flex_justify_content\";i:4;s:16:\"flex_align_items\";i:3;s:14:\"flex_direction\";i:11;s:13:\"content_width\";i:7;s:5:\"width\";i:7;s:8:\"flex_gap\";i:3;s:18:\"boxed_width_tablet\";i:1;s:18:\"boxed_width_mobile\";i:1;s:14:\"container_type\";i:1;s:17:\"grid_columns_grid\";i:1;s:9:\"flex_wrap\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"margin\";i:8;s:7:\"padding\";i:7;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:7;s:16:\"background_color\";i:3;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:3;s:21:\"background_color_stop\";i:1;s:18:\"background_color_b\";i:1;s:24:\"background_gradient_type\";i:1;}s:14:\"section_border\";a:2:{s:13:\"border_radius\";i:2;s:26:\"box_shadow_box_shadow_type\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_color\";i:3;s:26:\"background_overlay_opacity\";i:3;}}}}s:9:\"shortcode\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:2;}}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:10:\"_flex_size\";i:1;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:1;s:14:\"_border_radius\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:-12;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:-12;s:11:\"header_size\";i:-1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:21:\"typography_typography\";i:-12;s:20:\"typography_font_size\";i:-12;s:22:\"typography_line_height\";i:-16;s:11:\"title_color\";i:-14;s:22:\"typography_font_family\";i:-18;s:22:\"typography_font_weight\";i:-14;s:25:\"typography_letter_spacing\";i:-18;s:5:\"align\";i:5;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:-12;s:8:\"_padding\";i:1;s:14:\"_element_width\";i:6;s:21:\"_element_custom_width\";i:6;s:10:\"_flex_size\";i:1;}}}}s:8:\"icon-box\";a:2:{s:5:\"count\";i:10;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:13:\"selected_icon\";i:10;s:10:\"title_text\";i:10;s:16:\"description_text\";i:10;}}s:5:\"style\";a:3:{s:17:\"section_style_box\";a:4:{s:8:\"position\";i:10;s:26:\"content_vertical_alignment\";i:10;s:33:\"content_vertical_alignment_mobile\";i:4;s:10:\"text_align\";i:4;}s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:10;s:9:\"icon_size\";i:10;}s:21:\"section_style_content\";a:10:{s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:10;s:28:\"title_typography_font_weight\";i:10;s:33:\"description_typography_typography\";i:10;s:32:\"description_typography_font_size\";i:10;s:11:\"title_color\";i:4;s:28:\"text_stroke_text_stroke_type\";i:4;s:17:\"description_color\";i:4;s:28:\"title_typography_line_height\";i:4;s:34:\"description_typography_line_height\";i:4;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:-61;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:-61;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:21:\"typography_typography\";i:-47;s:5:\"align\";i:-1;s:10:\"text_color\";i:-48;s:22:\"typography_font_family\";i:-48;s:20:\"typography_font_size\";i:-48;s:22:\"typography_font_weight\";i:-48;s:22:\"typography_line_height\";i:-48;s:25:\"typography_letter_spacing\";i:-45;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:-60;}}}}s:8:\"jet-logo\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:9:\"logo_type\";i:1;s:10:\"logo_image\";i:1;}}s:5:\"style\";a:1:{s:10:\"logo_style\";a:1:{s:14:\"logo_alignment\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_element_width\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:-48;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:12:\"_inline_size\";i:-48;s:21:\"space_between_widgets\";i:2;s:5:\"align\";i:1;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:-37;s:6:\"margin\";i:-2;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:15:\"background_size\";i:2;s:19:\"background_bg_width\";i:1;s:16:\"background_color\";i:4;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:4;}s:12:\"section_typo\";a:0:{}}}}s:5:\"image\";a:2:{s:5:\"count\";i:-10;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:-10;s:10:\"image_size\";i:-10;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:-3;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:10:\"_flex_size\";i:1;s:9:\"_offset_y\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:-25;s:8:\"controls\";a:3:{s:6:\"layout\";a:3:{s:14:\"section_layout\";a:4:{s:13:\"content_width\";i:-22;s:3:\"gap\";i:-22;s:16:\"content_position\";i:2;s:6:\"layout\";i:1;}s:16:\"section_parallax\";a:1:{s:24:\"jet_parallax_layout_list\";i:-25;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:-20;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:12:{s:21:\"background_background\";i:-12;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;s:21:\"background_color_stop\";i:1;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_bg_width\";i:1;s:24:\"background_gradient_type\";i:1;s:28:\"background_gradient_position\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:-26;s:6:\"margin\";i:4;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:2;}}}}s:8:\"jet-tabs\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:18:\"section_items_data\";a:1:{s:4:\"tabs\";i:1;}s:21:\"section_settings_data\";a:2:{s:13:\"tabs_position\";i:1;s:14:\"no_active_tabs\";i:1;}}s:5:\"style\";a:2:{s:26:\"section_tabs_control_style\";a:3:{s:34:\"tabs_control_wrapper_border_border\";i:1;s:33:\"tabs_control_wrapper_border_width\";i:1;s:33:\"tabs_control_wrapper_border_color\";i:1;}s:31:\"section_tabs_control_item_style\";a:14:{s:43:\"tabs_controls_item_aligment_left_right_icon\";i:1;s:24:\"tabs_control_label_color\";i:1;s:40:\"tabs_control_label_typography_typography\";i:1;s:39:\"tabs_control_label_typography_font_size\";i:1;s:41:\"tabs_control_label_typography_font_weight\";i:1;s:30:\"tabs_control_label_color_hover\";i:1;s:46:\"tabs_control_label_typography_hover_typography\";i:1;s:45:\"tabs_control_label_typography_hover_font_size\";i:1;s:47:\"tabs_control_label_typography_hover_font_weight\";i:1;s:51:\"tabs_control_label_typography_hover_text_decoration\";i:1;s:31:\"tabs_control_label_color_active\";i:1;s:47:\"tabs_control_label_typography_active_typography\";i:1;s:48:\"tabs_control_label_typography_active_font_weight\";i:1;s:52:\"tabs_control_label_typography_active_text_decoration\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:11:\"_element_id\";i:1;}}}}s:14:\"contact-form-7\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"section_settings\";a:1:{s:14:\"form_shortcode\";i:1;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:18:\"section_icon_style\";a:3:{s:10:\"icon_color\";i:6;s:9:\"icon_size\";i:5;s:11:\"text_indent\";i:5;}s:18:\"section_text_style\";a:7:{s:26:\"icon_typography_typography\";i:6;s:10:\"text_color\";i:6;s:27:\"icon_typography_font_family\";i:5;s:25:\"icon_typography_font_size\";i:5;s:27:\"icon_typography_font_weight\";i:5;s:27:\"icon_typography_line_height\";i:5;s:30:\"icon_typography_letter_spacing\";i:1;}s:17:\"section_icon_list\";a:3:{s:17:\"icon_align_mobile\";i:1;s:10:\"icon_align\";i:4;s:13:\"space_between\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:2;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:12:\"align_mobile\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:16:\"background_color\";i:2;s:11:\"hover_color\";i:2;s:29:\"button_background_hover_color\";i:2;s:13:\"border_radius\";i:2;s:17:\"button_text_color\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:5:{s:14:\"_element_width\";i:2;s:21:\"_element_width_mobile\";i:2;s:21:\"_element_custom_width\";i:2;s:10:\"_flex_size\";i:2;s:7:\"_margin\";i:1;}s:36:\"jet_family_widget_orientaion_section\";a:2:{s:37:\"jet_family_widget_is_order_orientaion\";i:1;s:31:\"jet_family_widget_is_flex_basis\";i:1;}s:17:\"widget_jet_tricks\";a:3:{s:26:\"jet_tricks_widget_parallax\";i:1;s:27:\"jet_tricks_widget_satellite\";i:1;s:25:\"jet_tricks_widget_tooltip\";i:1;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:12:\"jet-timeline\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"section_cards\";a:1:{s:10:\"cards_list\";i:1;}s:14:\"section_layout\";a:3:{s:20:\"horizontal_alignment\";i:1;s:16:\"horizontal_space\";i:1;s:14:\"vertical_space\";i:1;}}s:5:\"style\";a:5:{s:26:\"section_card_content_style\";a:1:{s:20:\"card_content_padding\";i:1;}s:24:\"section_card_title_style\";a:2:{s:32:\"card_title_typography_typography\";i:1;s:31:\"card_title_typography_font_size\";i:1;}s:19:\"section_point_style\";a:1:{s:29:\"point_active_background_color\";i:1;}s:18:\"section_line_style\";a:2:{s:25:\"progress_background_color\";i:1;s:10:\"line_width\";i:1;}s:18:\"section_desc_style\";a:1:{s:31:\"card_desc_typography_typography\";i:1;}}}}s:14:\"image-carousel\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:22:\"section_image_carousel\";a:6:{s:8:\"carousel\";i:4;s:14:\"thumbnail_size\";i:4;s:14:\"slides_to_show\";i:4;s:10:\"navigation\";i:4;s:21:\"slides_to_show_tablet\";i:2;s:21:\"slides_to_show_mobile\";i:4;}s:26:\"section_additional_options\";a:4:{s:14:\"autoplay_speed\";i:2;s:9:\"direction\";i:1;s:8:\"autoplay\";i:2;s:8:\"infinite\";i:2;}}}}s:9:\"accordion\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"tabs\";i:1;}}s:5:\"style\";a:3:{s:19:\"section_title_style\";a:1:{s:12:\"border_color\";i:1;}s:26:\"section_toggle_style_title\";a:1:{s:27:\"title_typography_typography\";i:1;}s:28:\"section_toggle_style_content\";a:1:{s:29:\"content_typography_typography\";i:1;}}}}}s:4:\"page\";a:5:{s:11:\"text-editor\";a:2:{s:5:\"count\";i:34;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:34;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:15;s:8:\"_padding\";i:15;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:15;s:17:\"_background_color\";i:15;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:1:{s:6:\"margin\";i:1;}}}}s:14:\"code-highlight\";a:2:{s:5:\"count\";i:19;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:4:\"code\";i:19;s:8:\"language\";i:17;}}}}s:9:\"jet-table\";a:2:{s:5:\"count\";i:10;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:20:\"section_table_header\";a:1:{s:12:\"table_header\";i:10;}s:18:\"section_table_body\";a:1:{s:10:\"table_body\";i:10;}}s:5:\"style\";a:3:{s:21:\"section_general_style\";a:1:{s:18:\"table_column_width\";i:10;}s:26:\"section_table_header_style\";a:4:{s:21:\"table_head_cell_color\";i:10;s:24:\"table_head_cell_bg_color\";i:10;s:32:\"table_head_typography_typography\";i:10;s:31:\"table_head_typography_font_size\";i:8;}s:24:\"section_table_body_style\";a:7:{s:32:\"table_body_typography_typography\";i:10;s:31:\"table_body_typography_font_size\";i:10;s:22:\"table_body_striped_row\";i:10;s:28:\"table_body_even_row_bg_color\";i:10;s:29:\"table_body_cell_border_border\";i:10;s:28:\"table_body_cell_border_width\";i:10;s:28:\"table_body_cell_border_color\";i:10;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}}s:11:\"single-page\";a:2:{s:11:\"text-editor\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}}}}s:10:\"jet_footer\";a:6:{s:8:\"jet-logo\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:9:\"logo_type\";i:1;s:10:\"logo_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}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:8:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:2;s:21:\"typography_font_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:21:\"_element_width_mobile\";i:1;s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:4;}}s:5:\"style\";a:1:{s:12:\"section_typo\";a:2:{s:10:\"color_link\";i:1;s:16:\"color_link_hover\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:25:\"typography_letter_spacing\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_text_style\";a:7:{s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:27:\"icon_typography_line_height\";i:2;s:10:\"text_color\";i:2;s:16:\"text_color_hover\";i:2;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:3:{s:14:\"section_layout\";a:2:{s:13:\"content_width\";i:1;s:3:\"gap\";i:1;}s:16:\"section_parallax\";a:1:{s:24:\"jet_parallax_layout_list\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}}s:10:\"jet_header\";a:5:{s:8:\"jet-logo\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:10:\"logo_image\";i:1;s:9:\"logo_type\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_width_tablet\";i:1;s:21:\"_element_width_mobile\";i:1;}}s:5:\"style\";a:1:{s:15:\"text_logo_style\";a:4:{s:31:\"text_logo_typography_typography\";i:1;s:30:\"text_logo_typography_font_size\";i:1;s:32:\"text_logo_typography_font_weight\";i:1;s:15:\"text_logo_color\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:2;s:16:\"content_position\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:12:\"jet-nav-menu\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_menu\";a:2:{s:8:\"nav_menu\";i:2;s:14:\"menu_alignment\";i:1;}}s:5:\"style\";a:1:{s:15:\"nav_items_style\";a:7:{s:15:\"nav_items_color\";i:2;s:31:\"nav_items_typography_typography\";i:2;s:32:\"nav_items_typography_font_weight\";i:2;s:21:\"nav_items_color_hover\";i:2;s:37:\"nav_items_typography_hover_typography\";i:1;s:22:\"nav_items_border_width\";i:1;s:22:\"nav_items_color_active\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:4:{s:14:\"flex_direction\";i:3;s:13:\"content_width\";i:3;s:5:\"width\";i:3;s:8:\"flex_gap\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"section_layout\";a:1:{s:10:\"_flex_size\";i:2;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:3:{s:14:\"section_layout\";a:2:{s:13:\"content_width\";i:1;s:3:\"gap\";i:1;}s:16:\"section_parallax\";a:1:{s:24:\"jet_parallax_layout_list\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:7:\"z_index\";i:1;s:6:\"margin\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}}}','off'),
(284,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','off'),
(285,'elementor_library_category_children','a:0:{}','yes'),
(339,'theme_mods_calcue-child','a:158:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:16:\"blog_layout_type\";s:7:\"default\";s:10:\"blog_style\";s:7:\"default\";s:12:\"show_tagline\";b:1;s:14:\"page_preloader\";b:1;s:19:\"header_social_links\";b:1;s:19:\"footer_social_links\";b:1;s:14:\"container_type\";s:9:\"fullwidth\";s:13:\"sidebar_width\";s:3:\"1/3\";s:15:\"show_page_title\";b:1;s:18:\"show_archive_title\";b:1;s:17:\"show_archive_desc\";b:1;s:16:\"totop_visibility\";b:1;s:22:\"totop_vertical_padding\";s:1:\"0\";s:24:\"totop_horizontal_padding\";s:1:\"0\";s:19:\"totop_border_radius\";s:1:\"0\";s:14:\"totop_bg_color\";b:0;s:16:\"totop_icon_color\";b:0;s:20:\"totop_bg_color_hover\";b:0;s:22:\"totop_icon_color_hover\";b:0;s:12:\"accent_color\";s:7:\"#509bf6\";s:18:\"primary_text_color\";s:7:\"#2e2c39\";s:20:\"secondary_text_color\";s:7:\"#2e2c39\";s:17:\"invert_text_color\";s:7:\"#ffffff\";s:10:\"link_color\";s:7:\"#2e2c39\";s:16:\"link_hover_color\";s:7:\"#509bf6\";s:8:\"h1_color\";s:7:\"#2e2c39\";s:8:\"h2_color\";s:7:\"#2e2c39\";s:8:\"h3_color\";s:7:\"#2e2c39\";s:8:\"h4_color\";s:7:\"#2e2c39\";s:8:\"h5_color\";s:7:\"#2e2c39\";s:8:\"h6_color\";s:7:\"#2e2c39\";s:16:\"body_font_family\";s:17:\"Inter, sans-serif\";s:15:\"body_font_style\";s:6:\"normal\";s:16:\"body_font_weight\";s:3:\"300\";s:14:\"body_font_size\";i:18;s:16:\"body_line_height\";d:1.5;s:19:\"body_letter_spacing\";s:1:\"0\";s:18:\"body_character_set\";s:5:\"latin\";s:15:\"body_text_align\";s:4:\"left\";s:14:\"h1_font_family\";s:17:\"Inter, sans-serif\";s:13:\"h1_font_style\";s:6:\"normal\";s:14:\"h1_font_weight\";s:3:\"700\";s:12:\"h1_font_size\";i:46;s:14:\"h1_line_height\";d:1.3;s:17:\"h1_letter_spacing\";s:1:\"0\";s:16:\"h1_character_set\";s:5:\"latin\";s:13:\"h1_text_align\";s:7:\"inherit\";s:14:\"h2_font_family\";s:17:\"Inter, sans-serif\";s:13:\"h2_font_style\";s:6:\"normal\";s:14:\"h2_font_weight\";s:3:\"500\";s:12:\"h2_font_size\";i:34;s:14:\"h2_line_height\";d:1.2;s:17:\"h2_letter_spacing\";s:1:\"0\";s:16:\"h2_character_set\";s:5:\"latin\";s:13:\"h2_text_align\";s:7:\"inherit\";s:14:\"h3_font_family\";s:17:\"Inter, sans-serif\";s:13:\"h3_font_style\";s:6:\"normal\";s:14:\"h3_font_weight\";s:3:\"600\";s:12:\"h3_font_size\";i:34;s:14:\"h3_line_height\";s:3:\"1.4\";s:17:\"h3_letter_spacing\";s:1:\"0\";s:16:\"h3_character_set\";s:5:\"latin\";s:13:\"h3_text_align\";s:7:\"inherit\";s:14:\"h4_font_family\";s:17:\"Inter, sans-serif\";s:13:\"h4_font_style\";s:6:\"normal\";s:14:\"h4_font_weight\";s:3:\"700\";s:12:\"h4_font_size\";s:2:\"20\";s:14:\"h4_line_height\";d:1.33;s:17:\"h4_letter_spacing\";s:1:\"0\";s:16:\"h4_character_set\";s:5:\"latin\";s:13:\"h4_text_align\";s:7:\"inherit\";s:14:\"h5_font_family\";s:17:\"Inter, sans-serif\";s:13:\"h5_font_style\";s:6:\"normal\";s:14:\"h5_font_weight\";s:3:\"400\";s:12:\"h5_font_size\";i:16;s:14:\"h5_line_height\";d:1.33;s:17:\"h5_letter_spacing\";s:1:\"0\";s:16:\"h5_character_set\";s:5:\"latin\";s:13:\"h5_text_align\";s:7:\"inherit\";s:14:\"h6_font_family\";s:17:\"Inter, sans-serif\";s:13:\"h6_font_style\";s:6:\"normal\";s:14:\"h6_font_weight\";s:3:\"400\";s:12:\"h6_font_size\";s:2:\"14\";s:14:\"h6_line_height\";d:1.2;s:17:\"h6_letter_spacing\";s:1:\"0\";s:16:\"h6_character_set\";s:5:\"latin\";s:13:\"h6_text_align\";s:7:\"inherit\";s:23:\"header_logo_font_family\";s:17:\"Inter, sans-serif\";s:22:\"header_logo_font_style\";s:6:\"normal\";s:23:\"header_logo_font_weight\";s:3:\"700\";s:21:\"header_logo_font_size\";s:2:\"26\";s:25:\"header_logo_character_set\";s:5:\"latin\";s:16:\"menu_font_family\";s:17:\"Inter, sans-serif\";s:15:\"menu_font_style\";s:6:\"normal\";s:16:\"menu_font_weight\";s:3:\"400\";s:14:\"menu_font_size\";i:16;s:16:\"menu_line_height\";d:1.2;s:19:\"menu_letter_spacing\";s:1:\"0\";s:18:\"menu_character_set\";s:5:\"latin\";s:23:\"breadcrumbs_font_family\";s:17:\"Inter, sans-serif\";s:22:\"breadcrumbs_font_style\";s:6:\"normal\";s:23:\"breadcrumbs_font_weight\";s:3:\"400\";s:21:\"breadcrumbs_font_size\";i:14;s:23:\"breadcrumbs_line_height\";s:3:\"1.5\";s:26:\"breadcrumbs_letter_spacing\";s:1:\"0\";s:25:\"breadcrumbs_character_set\";s:5:\"latin\";s:18:\"button_font_family\";s:17:\"Inter, sans-serif\";s:17:\"button_font_style\";s:6:\"normal\";s:18:\"button_font_weight\";s:3:\"600\";s:16:\"button_font_size\";i:16;s:18:\"button_line_height\";d:1.2;s:21:\"button_letter_spacing\";i:0;s:20:\"button_character_set\";s:5:\"latin\";s:15:\"header_bg_color\";s:7:\"#ffffff\";s:15:\"header_bg_image\";N;s:16:\"header_bg_repeat\";s:6:\"repeat\";s:20:\"header_bg_position_x\";s:6:\"center\";s:20:\"header_bg_attachment\";s:6:\"scroll\";s:16:\"top_panel_enable\";b:1;s:12:\"top_panel_bg\";s:7:\"#ffffff\";s:16:\"footer_copyright\";s:72:\"© %%year%% Kava | Multipurpose WP Theme with Elementor Page Builder\";s:21:\"blog_sidebar_position\";s:4:\"none\";s:20:\"blog_navigation_type\";s:10:\"pagination\";s:16:\"blog_sticky_type\";s:4:\"icon\";s:17:\"blog_sticky_label\";s:8:\"Featured\";s:16:\"blog_post_author\";b:1;s:22:\"blog_post_publish_date\";b:1;s:20:\"blog_post_categories\";b:1;s:14:\"blog_post_tags\";b:0;s:18:\"blog_post_comments\";b:1;s:17:\"blog_post_excerpt\";b:1;s:29:\"blog_post_excerpt_words_count\";i:6;s:19:\"blog_read_more_type\";s:4:\"text\";s:19:\"blog_read_more_text\";s:9:\"Read more\";s:23:\"single_sidebar_position\";s:4:\"none\";s:18:\"single_post_author\";b:1;s:24:\"single_post_publish_date\";b:1;s:22:\"single_post_categories\";b:0;s:16:\"single_post_tags\";b:0;s:20:\"single_post_comments\";b:0;s:19:\"single_author_block\";b:0;s:21:\"related_posts_visible\";b:1;s:25:\"related_posts_block_title\";s:13:\"Related Posts\";s:19:\"related_posts_count\";s:1:\"2\";s:18:\"related_posts_grid\";s:1:\"2\";s:19:\"related_posts_image\";b:1;s:26:\"related_posts_publish_date\";b:1;s:20:\"related_posts_author\";b:0;s:19:\"related_posts_title\";b:1;s:21:\"related_posts_excerpt\";b:0;s:23:\"breadcrumbs_visibillity\";b:1;s:29:\"breadcrumbs_front_visibillity\";b:0;s:22:\"breadcrumbs_page_title\";b:0;s:21:\"breadcrumbs_path_type\";s:8:\"minified\";s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";i:3050;}','yes'),
(352,'wpcf7','a:2:{s:7:\"version\";s:5:\"5.9.5\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1717058149;s:7:\"version\";s:5:\"5.9.5\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),
(355,'jet-license-data','a:1:{s:12:\"license-list\";a:0:{}}','yes'),
(390,'tm_active_skin','a:2:{s:4:\"skin\";s:7:\"default\";s:4:\"type\";s:4:\"full\";}','no'),
(398,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(399,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(400,'widget_archives','a:2:{i:1;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),
(401,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(402,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(403,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(404,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(405,'widget_meta','a:2:{i:1;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),
(406,'widget_search','a:2:{i:1;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),
(407,'widget_text','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(408,'widget_categories','a:2:{i:1;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),
(409,'widget_recent-posts','a:2:{i:1;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),
(410,'widget_recent-comments','a:2:{i:1;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),
(411,'widget_rss','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(412,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(413,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(414,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(415,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(416,'widget_elementor-library','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(417,'jet_site_conditions','a:4:{s:10:\"jet_footer\";a:2:{i:2465;a:1:{i:0;a:5:{s:2:\"id\";s:14:\"_66583b77cdca0\";s:7:\"include\";s:4:\"true\";s:5:\"group\";s:8:\"singular\";s:8:\"subGroup\";s:18:\"singular-post-type\";s:13:\"subGroupValue\";s:4:\"post\";}}i:711;a:1:{i:0;a:5:{s:2:\"id\";s:14:\"_66583b742aa86\";s:7:\"include\";s:4:\"true\";s:5:\"group\";s:6:\"entire\";s:8:\"subGroup\";s:6:\"entire\";s:13:\"subGroupValue\";s:0:\"\";}}}s:10:\"jet_header\";a:3:{i:2460;a:1:{i:0;a:5:{s:2:\"id\";s:14:\"_66583b77ce5cf\";s:7:\"include\";s:4:\"true\";s:5:\"group\";s:8:\"singular\";s:8:\"subGroup\";s:18:\"singular-post-type\";s:13:\"subGroupValue\";s:4:\"post\";}}i:1653;a:1:{i:0;a:5:{s:2:\"id\";s:14:\"_66583b74bbb1e\";s:7:\"include\";s:4:\"true\";s:5:\"group\";s:6:\"entire\";s:8:\"subGroup\";s:6:\"entire\";s:13:\"subGroupValue\";s:0:\"\";}}i:758;a:1:{i:0;a:5:{s:2:\"id\";s:14:\"_66583b742bb08\";s:7:\"include\";s:4:\"true\";s:5:\"group\";s:8:\"singular\";s:8:\"subGroup\";s:19:\"singular-front-page\";s:13:\"subGroupValue\";s:0:\"\";}}}s:11:\"jet_archive\";a:1:{i:1636;a:1:{i:0;a:5:{s:2:\"id\";s:14:\"_66583b74bc5e4\";s:7:\"include\";s:4:\"true\";s:5:\"group\";s:7:\"archive\";s:8:\"subGroup\";s:17:\"archive-post-type\";s:13:\"subGroupValue\";s:4:\"post\";}}}s:0:\"\";a:6:{i:2460;a:1:{i:0;a:5:{s:2:\"id\";s:14:\"_66583b770d713\";s:7:\"include\";s:4:\"true\";s:5:\"group\";s:8:\"singular\";s:8:\"subGroup\";s:18:\"singular-post-type\";s:13:\"subGroupValue\";s:4:\"post\";}}i:2465;a:1:{i:0;a:5:{s:2:\"id\";s:14:\"_66583b770cc97\";s:7:\"include\";s:4:\"true\";s:5:\"group\";s:8:\"singular\";s:8:\"subGroup\";s:18:\"singular-post-type\";s:13:\"subGroupValue\";s:4:\"post\";}}i:1636;a:1:{i:0;a:5:{s:2:\"id\";s:14:\"_66583b742c307\";s:7:\"include\";s:4:\"true\";s:5:\"group\";s:7:\"archive\";s:8:\"subGroup\";s:17:\"archive-post-type\";s:13:\"subGroupValue\";s:4:\"post\";}}i:1653;a:1:{i:0;a:5:{s:2:\"id\";s:14:\"_66583b742b4ba\";s:7:\"include\";s:4:\"true\";s:5:\"group\";s:6:\"entire\";s:8:\"subGroup\";s:6:\"entire\";s:13:\"subGroupValue\";s:0:\"\";}}i:758;a:1:{i:0;a:5:{s:2:\"id\";s:14:\"_66583b73ce1eb\";s:7:\"include\";s:4:\"true\";s:5:\"group\";s:8:\"singular\";s:8:\"subGroup\";s:19:\"singular-front-page\";s:13:\"subGroupValue\";s:0:\"\";}}i:711;a:1:{i:0;a:5:{s:2:\"id\";s:14:\"_66583b73cd1b0\";s:7:\"include\";s:4:\"true\";s:5:\"group\";s:6:\"entire\";s:8:\"subGroup\";s:6:\"entire\";s:13:\"subGroupValue\";s:0:\"\";}}}}','yes'),
(418,'jet_menu_options','a:579:{s:18:\"jet-menu-animation\";s:4:\"fade\";s:21:\"jet-menu-mega-bg-type\";s:10:\"fill-color\";s:22:\"jet-menu-mega-bg-color\";s:4:\"#fff\";s:30:\"jet-menu-mega-bg-color-opacity\";i:100;s:22:\"jet-menu-mega-bg-image\";s:0:\"\";s:21:\"jet-menu-mega-padding\";a:3:{s:5:\"units\";s:2:\"px\";s:9:\"is_linked\";s:4:\"true\";s:4:\"size\";a:4:{s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"10\";}}s:16:\"jet-menu-roll-up\";s:4:\"true\";s:11:\"svg-uploads\";s:7:\"enabled\";s:18:\"use-template-cache\";s:4:\"true\";s:24:\"jet-menu-show-for-device\";s:4:\"both\";s:26:\"jet-menu-mega-ajax-loading\";s:5:\"false\";s:25:\"jet-menu-mouseleave-delay\";s:3:\"500\";s:24:\"jet-mega-menu-width-type\";s:9:\"container\";s:33:\"jet-mega-menu-selector-width-type\";s:0:\"\";s:22:\"jet-menu-open-sub-type\";s:5:\"hover\";s:37:\"jet-menu-disable-integration-imperion\";s:5:\"false\";s:18:\"jet-menu-cache-css\";s:5:\"false\";s:28:\"jet-menu-container-alignment\";s:8:\"flex-end\";s:18:\"jet-menu-min-width\";s:1:\"0\";s:25:\"jet-menu-container-switch\";s:5:\"false\";s:24:\"jet-menu-container-color\";s:7:\"#ffffff\";s:34:\"jet-menu-container-gradient-switch\";s:5:\"false\";s:31:\"jet-menu-container-second-color\";s:0:\"\";s:28:\"jet-menu-container-direction\";s:5:\"right\";s:24:\"jet-menu-container-image\";s:0:\"\";s:27:\"jet-menu-container-position\";s:0:\"\";s:29:\"jet-menu-container-attachment\";s:0:\"\";s:25:\"jet-menu-container-repeat\";s:0:\"\";s:23:\"jet-menu-container-size\";s:0:\"\";s:32:\"jet-menu-container-border-switch\";s:5:\"false\";s:31:\"jet-menu-container-border-style\";s:0:\"\";s:31:\"jet-menu-container-border-width\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:31:\"jet-menu-container-border-color\";s:0:\"\";s:36:\"jet-menu-container-box-shadow-switch\";s:5:\"false\";s:35:\"jet-menu-container-box-shadow-inset\";s:5:\"false\";s:35:\"jet-menu-container-box-shadow-color\";s:0:\"\";s:31:\"jet-menu-container-box-shadow-h\";s:0:\"\";s:31:\"jet-menu-container-box-shadow-v\";s:0:\"\";s:34:\"jet-menu-container-box-shadow-blur\";s:0:\"\";s:36:\"jet-menu-container-box-shadow-spread\";s:0:\"\";s:27:\"jet-menu-mega-border-radius\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:29:\"jet-menu-inherit-first-radius\";s:5:\"false\";s:28:\"jet-menu-inherit-last-radius\";s:5:\"false\";s:31:\"jet-menu-sub-panel-width-simple\";s:3:\"200\";s:32:\"jet-menu-sub-panel-simple-switch\";s:5:\"false\";s:31:\"jet-menu-sub-panel-simple-color\";s:7:\"#ffffff\";s:41:\"jet-menu-sub-panel-simple-gradient-switch\";s:5:\"false\";s:38:\"jet-menu-sub-panel-simple-second-color\";s:0:\"\";s:35:\"jet-menu-sub-panel-simple-direction\";s:5:\"right\";s:31:\"jet-menu-sub-panel-simple-image\";s:0:\"\";s:34:\"jet-menu-sub-panel-simple-position\";s:0:\"\";s:36:\"jet-menu-sub-panel-simple-attachment\";s:0:\"\";s:32:\"jet-menu-sub-panel-simple-repeat\";s:0:\"\";s:30:\"jet-menu-sub-panel-simple-size\";s:0:\"\";s:39:\"jet-menu-sub-panel-simple-border-switch\";s:5:\"false\";s:38:\"jet-menu-sub-panel-simple-border-style\";s:0:\"\";s:38:\"jet-menu-sub-panel-simple-border-width\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:38:\"jet-menu-sub-panel-simple-border-color\";s:0:\"\";s:43:\"jet-menu-sub-panel-simple-box-shadow-switch\";s:5:\"false\";s:42:\"jet-menu-sub-panel-simple-box-shadow-inset\";s:5:\"false\";s:42:\"jet-menu-sub-panel-simple-box-shadow-color\";s:0:\"\";s:38:\"jet-menu-sub-panel-simple-box-shadow-h\";s:0:\"\";s:38:\"jet-menu-sub-panel-simple-box-shadow-v\";s:0:\"\";s:41:\"jet-menu-sub-panel-simple-box-shadow-blur\";s:0:\"\";s:43:\"jet-menu-sub-panel-simple-box-shadow-spread\";s:0:\"\";s:39:\"jet-menu-sub-panel-border-radius-simple\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:33:\"jet-menu-sub-panel-padding-simple\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:32:\"jet-menu-sub-panel-margin-simple\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:30:\"jet-menu-sub-panel-mega-switch\";s:5:\"false\";s:29:\"jet-menu-sub-panel-mega-color\";s:7:\"#ffffff\";s:39:\"jet-menu-sub-panel-mega-gradient-switch\";s:5:\"false\";s:36:\"jet-menu-sub-panel-mega-second-color\";s:0:\"\";s:33:\"jet-menu-sub-panel-mega-direction\";s:5:\"right\";s:29:\"jet-menu-sub-panel-mega-image\";s:0:\"\";s:32:\"jet-menu-sub-panel-mega-position\";s:0:\"\";s:34:\"jet-menu-sub-panel-mega-attachment\";s:0:\"\";s:30:\"jet-menu-sub-panel-mega-repeat\";s:0:\"\";s:28:\"jet-menu-sub-panel-mega-size\";s:0:\"\";s:37:\"jet-menu-sub-panel-mega-border-switch\";s:5:\"false\";s:36:\"jet-menu-sub-panel-mega-border-style\";s:0:\"\";s:36:\"jet-menu-sub-panel-mega-border-width\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:36:\"jet-menu-sub-panel-mega-border-color\";s:0:\"\";s:41:\"jet-menu-sub-panel-mega-box-shadow-switch\";s:5:\"false\";s:40:\"jet-menu-sub-panel-mega-box-shadow-inset\";s:5:\"false\";s:40:\"jet-menu-sub-panel-mega-box-shadow-color\";s:0:\"\";s:36:\"jet-menu-sub-panel-mega-box-shadow-h\";s:0:\"\";s:36:\"jet-menu-sub-panel-mega-box-shadow-v\";s:0:\"\";s:39:\"jet-menu-sub-panel-mega-box-shadow-blur\";s:0:\"\";s:41:\"jet-menu-sub-panel-mega-box-shadow-spread\";s:0:\"\";s:37:\"jet-menu-sub-panel-border-radius-mega\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:31:\"jet-menu-sub-panel-padding-mega\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:30:\"jet-menu-sub-panel-margin-mega\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:23:\"jet-menu-item-max-width\";s:0:\"\";s:19:\"jet-top-menu-switch\";s:5:\"false\";s:24:\"jet-top-menu-font-family\";s:0:\"\";s:19:\"jet-top-menu-subset\";s:0:\"\";s:22:\"jet-top-menu-font-size\";s:0:\"\";s:24:\"jet-top-menu-line-height\";s:0:\"\";s:24:\"jet-top-menu-font-weight\";s:0:\"\";s:27:\"jet-top-menu-text-transform\";s:0:\"\";s:23:\"jet-top-menu-font-style\";s:0:\"\";s:27:\"jet-top-menu-letter-spacing\";s:0:\"\";s:22:\"jet-show-top-menu-desc\";s:5:\"false\";s:24:\"jet-top-menu-desc-switch\";s:5:\"false\";s:29:\"jet-top-menu-desc-font-family\";s:0:\"\";s:24:\"jet-top-menu-desc-subset\";s:0:\"\";s:27:\"jet-top-menu-desc-font-size\";s:0:\"\";s:29:\"jet-top-menu-desc-line-height\";s:0:\"\";s:29:\"jet-top-menu-desc-font-weight\";s:0:\"\";s:32:\"jet-top-menu-desc-text-transform\";s:0:\"\";s:28:\"jet-top-menu-desc-font-style\";s:0:\"\";s:32:\"jet-top-menu-desc-letter-spacing\";s:0:\"\";s:24:\"jet-menu-item-text-color\";s:0:\"\";s:24:\"jet-menu-item-desc-color\";s:0:\"\";s:23:\"jet-menu-top-icon-color\";s:0:\"\";s:24:\"jet-menu-top-arrow-color\";s:0:\"\";s:20:\"jet-menu-item-switch\";s:5:\"false\";s:19:\"jet-menu-item-color\";s:7:\"#ffffff\";s:29:\"jet-menu-item-gradient-switch\";s:5:\"false\";s:26:\"jet-menu-item-second-color\";s:0:\"\";s:23:\"jet-menu-item-direction\";s:5:\"right\";s:19:\"jet-menu-item-image\";s:0:\"\";s:22:\"jet-menu-item-position\";s:0:\"\";s:24:\"jet-menu-item-attachment\";s:0:\"\";s:20:\"jet-menu-item-repeat\";s:0:\"\";s:18:\"jet-menu-item-size\";s:0:\"\";s:27:\"jet-menu-item-border-switch\";s:5:\"false\";s:26:\"jet-menu-item-border-style\";s:0:\"\";s:26:\"jet-menu-item-border-width\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:26:\"jet-menu-item-border-color\";s:0:\"\";s:33:\"jet-menu-first-item-border-switch\";s:5:\"false\";s:32:\"jet-menu-first-item-border-style\";s:0:\"\";s:32:\"jet-menu-first-item-border-width\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:32:\"jet-menu-first-item-border-color\";s:0:\"\";s:32:\"jet-menu-last-item-border-switch\";s:5:\"false\";s:31:\"jet-menu-last-item-border-style\";s:0:\"\";s:31:\"jet-menu-last-item-border-width\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:31:\"jet-menu-last-item-border-color\";s:0:\"\";s:31:\"jet-menu-item-box-shadow-switch\";s:5:\"false\";s:30:\"jet-menu-item-box-shadow-inset\";s:5:\"false\";s:30:\"jet-menu-item-box-shadow-color\";s:0:\"\";s:26:\"jet-menu-item-box-shadow-h\";s:0:\"\";s:26:\"jet-menu-item-box-shadow-v\";s:0:\"\";s:29:\"jet-menu-item-box-shadow-blur\";s:0:\"\";s:31:\"jet-menu-item-box-shadow-spread\";s:0:\"\";s:27:\"jet-menu-item-border-radius\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:21:\"jet-menu-item-padding\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:20:\"jet-menu-item-margin\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:30:\"jet-menu-item-text-color-hover\";s:0:\"\";s:30:\"jet-menu-item-desc-color-hover\";s:0:\"\";s:29:\"jet-menu-top-icon-color-hover\";s:0:\"\";s:30:\"jet-menu-top-arrow-color-hover\";s:0:\"\";s:26:\"jet-menu-item-hover-switch\";s:5:\"false\";s:25:\"jet-menu-item-hover-color\";s:7:\"#ffffff\";s:35:\"jet-menu-item-hover-gradient-switch\";s:5:\"false\";s:32:\"jet-menu-item-hover-second-color\";s:0:\"\";s:29:\"jet-menu-item-hover-direction\";s:5:\"right\";s:25:\"jet-menu-item-hover-image\";s:0:\"\";s:28:\"jet-menu-item-hover-position\";s:0:\"\";s:30:\"jet-menu-item-hover-attachment\";s:0:\"\";s:26:\"jet-menu-item-hover-repeat\";s:0:\"\";s:24:\"jet-menu-item-hover-size\";s:0:\"\";s:33:\"jet-menu-item-hover-border-switch\";s:5:\"false\";s:32:\"jet-menu-item-hover-border-style\";s:0:\"\";s:32:\"jet-menu-item-hover-border-width\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:32:\"jet-menu-item-hover-border-color\";s:0:\"\";s:39:\"jet-menu-first-item-hover-border-switch\";s:5:\"false\";s:38:\"jet-menu-first-item-hover-border-style\";s:0:\"\";s:38:\"jet-menu-first-item-hover-border-width\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:38:\"jet-menu-first-item-hover-border-color\";s:0:\"\";s:38:\"jet-menu-last-item-hover-border-switch\";s:5:\"false\";s:37:\"jet-menu-last-item-hover-border-style\";s:0:\"\";s:37:\"jet-menu-last-item-hover-border-width\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:37:\"jet-menu-last-item-hover-border-color\";s:0:\"\";s:37:\"jet-menu-item-hover-box-shadow-switch\";s:5:\"false\";s:36:\"jet-menu-item-hover-box-shadow-inset\";s:5:\"false\";s:36:\"jet-menu-item-hover-box-shadow-color\";s:0:\"\";s:32:\"jet-menu-item-hover-box-shadow-h\";s:0:\"\";s:32:\"jet-menu-item-hover-box-shadow-v\";s:0:\"\";s:35:\"jet-menu-item-hover-box-shadow-blur\";s:0:\"\";s:37:\"jet-menu-item-hover-box-shadow-spread\";s:0:\"\";s:33:\"jet-menu-item-border-radius-hover\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:27:\"jet-menu-item-padding-hover\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:26:\"jet-menu-item-margin-hover\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:31:\"jet-menu-item-text-color-active\";s:0:\"\";s:31:\"jet-menu-item-desc-color-active\";s:0:\"\";s:30:\"jet-menu-top-icon-color-active\";s:0:\"\";s:31:\"jet-menu-top-arrow-color-active\";s:0:\"\";s:27:\"jet-menu-item-active-switch\";s:5:\"false\";s:26:\"jet-menu-item-active-color\";s:7:\"#ffffff\";s:36:\"jet-menu-item-active-gradient-switch\";s:5:\"false\";s:33:\"jet-menu-item-active-second-color\";s:0:\"\";s:30:\"jet-menu-item-active-direction\";s:5:\"right\";s:26:\"jet-menu-item-active-image\";s:0:\"\";s:29:\"jet-menu-item-active-position\";s:0:\"\";s:31:\"jet-menu-item-active-attachment\";s:0:\"\";s:27:\"jet-menu-item-active-repeat\";s:0:\"\";s:25:\"jet-menu-item-active-size\";s:0:\"\";s:34:\"jet-menu-item-active-border-switch\";s:5:\"false\";s:33:\"jet-menu-item-active-border-style\";s:0:\"\";s:33:\"jet-menu-item-active-border-width\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:33:\"jet-menu-item-active-border-color\";s:0:\"\";s:40:\"jet-menu-first-item-active-border-switch\";s:5:\"false\";s:39:\"jet-menu-first-item-active-border-style\";s:0:\"\";s:39:\"jet-menu-first-item-active-border-width\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:39:\"jet-menu-first-item-active-border-color\";s:0:\"\";s:39:\"jet-menu-last-item-active-border-switch\";s:5:\"false\";s:38:\"jet-menu-last-item-active-border-style\";s:0:\"\";s:38:\"jet-menu-last-item-active-border-width\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:38:\"jet-menu-last-item-active-border-color\";s:0:\"\";s:38:\"jet-menu-item-active-box-shadow-switch\";s:5:\"false\";s:37:\"jet-menu-item-active-box-shadow-inset\";s:5:\"false\";s:37:\"jet-menu-item-active-box-shadow-color\";s:0:\"\";s:33:\"jet-menu-item-active-box-shadow-h\";s:0:\"\";s:33:\"jet-menu-item-active-box-shadow-v\";s:0:\"\";s:36:\"jet-menu-item-active-box-shadow-blur\";s:0:\"\";s:38:\"jet-menu-item-active-box-shadow-spread\";s:0:\"\";s:34:\"jet-menu-item-border-radius-active\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:28:\"jet-menu-item-padding-active\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:27:\"jet-menu-item-margin-active\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:19:\"jet-sub-menu-switch\";s:5:\"false\";s:24:\"jet-sub-menu-font-family\";s:0:\"\";s:19:\"jet-sub-menu-subset\";s:0:\"\";s:22:\"jet-sub-menu-font-size\";s:0:\"\";s:24:\"jet-sub-menu-line-height\";s:0:\"\";s:24:\"jet-sub-menu-font-weight\";s:0:\"\";s:27:\"jet-sub-menu-text-transform\";s:0:\"\";s:23:\"jet-sub-menu-font-style\";s:0:\"\";s:27:\"jet-sub-menu-letter-spacing\";s:0:\"\";s:22:\"jet-show-sub-menu-desc\";s:5:\"false\";s:24:\"jet-sub-menu-desc-switch\";s:5:\"false\";s:29:\"jet-sub-menu-desc-font-family\";s:0:\"\";s:24:\"jet-sub-menu-desc-subset\";s:0:\"\";s:27:\"jet-sub-menu-desc-font-size\";s:0:\"\";s:29:\"jet-sub-menu-desc-line-height\";s:0:\"\";s:29:\"jet-sub-menu-desc-font-weight\";s:0:\"\";s:32:\"jet-sub-menu-desc-text-transform\";s:0:\"\";s:28:\"jet-sub-menu-desc-font-style\";s:0:\"\";s:32:\"jet-sub-menu-desc-letter-spacing\";s:0:\"\";s:23:\"jet-menu-sub-text-color\";s:0:\"\";s:23:\"jet-menu-sub-desc-color\";s:0:\"\";s:23:\"jet-menu-sub-icon-color\";s:0:\"\";s:24:\"jet-menu-sub-arrow-color\";s:0:\"\";s:19:\"jet-menu-sub-switch\";s:5:\"false\";s:18:\"jet-menu-sub-color\";s:7:\"#ffffff\";s:28:\"jet-menu-sub-gradient-switch\";s:5:\"false\";s:25:\"jet-menu-sub-second-color\";s:0:\"\";s:22:\"jet-menu-sub-direction\";s:5:\"right\";s:18:\"jet-menu-sub-image\";s:0:\"\";s:21:\"jet-menu-sub-position\";s:0:\"\";s:23:\"jet-menu-sub-attachment\";s:0:\"\";s:19:\"jet-menu-sub-repeat\";s:0:\"\";s:17:\"jet-menu-sub-size\";s:0:\"\";s:26:\"jet-menu-sub-border-switch\";s:5:\"false\";s:25:\"jet-menu-sub-border-style\";s:0:\"\";s:25:\"jet-menu-sub-border-width\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:25:\"jet-menu-sub-border-color\";s:0:\"\";s:32:\"jet-menu-sub-first-border-switch\";s:5:\"false\";s:31:\"jet-menu-sub-first-border-style\";s:0:\"\";s:31:\"jet-menu-sub-first-border-width\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:31:\"jet-menu-sub-first-border-color\";s:0:\"\";s:31:\"jet-menu-sub-last-border-switch\";s:5:\"false\";s:30:\"jet-menu-sub-last-border-style\";s:0:\"\";s:30:\"jet-menu-sub-last-border-width\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:30:\"jet-menu-sub-last-border-color\";s:0:\"\";s:30:\"jet-menu-sub-box-shadow-switch\";s:5:\"false\";s:29:\"jet-menu-sub-box-shadow-inset\";s:5:\"false\";s:29:\"jet-menu-sub-box-shadow-color\";s:0:\"\";s:25:\"jet-menu-sub-box-shadow-h\";s:0:\"\";s:25:\"jet-menu-sub-box-shadow-v\";s:0:\"\";s:28:\"jet-menu-sub-box-shadow-blur\";s:0:\"\";s:30:\"jet-menu-sub-box-shadow-spread\";s:0:\"\";s:26:\"jet-menu-sub-border-radius\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:20:\"jet-menu-sub-padding\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:19:\"jet-menu-sub-margin\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:29:\"jet-menu-sub-text-color-hover\";s:0:\"\";s:29:\"jet-menu-sub-desc-color-hover\";s:0:\"\";s:29:\"jet-menu-sub-icon-color-hover\";s:0:\"\";s:30:\"jet-menu-sub-arrow-color-hover\";s:0:\"\";s:25:\"jet-menu-sub-hover-switch\";s:5:\"false\";s:24:\"jet-menu-sub-hover-color\";s:7:\"#ffffff\";s:34:\"jet-menu-sub-hover-gradient-switch\";s:5:\"false\";s:31:\"jet-menu-sub-hover-second-color\";s:0:\"\";s:28:\"jet-menu-sub-hover-direction\";s:5:\"right\";s:24:\"jet-menu-sub-hover-image\";s:0:\"\";s:27:\"jet-menu-sub-hover-position\";s:0:\"\";s:29:\"jet-menu-sub-hover-attachment\";s:0:\"\";s:25:\"jet-menu-sub-hover-repeat\";s:0:\"\";s:23:\"jet-menu-sub-hover-size\";s:0:\"\";s:32:\"jet-menu-sub-hover-border-switch\";s:5:\"false\";s:31:\"jet-menu-sub-hover-border-style\";s:0:\"\";s:31:\"jet-menu-sub-hover-border-width\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:31:\"jet-menu-sub-hover-border-color\";s:0:\"\";s:38:\"jet-menu-sub-first-hover-border-switch\";s:5:\"false\";s:37:\"jet-menu-sub-first-hover-border-style\";s:0:\"\";s:37:\"jet-menu-sub-first-hover-border-width\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:37:\"jet-menu-sub-first-hover-border-color\";s:0:\"\";s:37:\"jet-menu-sub-last-hover-border-switch\";s:5:\"false\";s:36:\"jet-menu-sub-last-hover-border-style\";s:0:\"\";s:36:\"jet-menu-sub-last-hover-border-width\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:36:\"jet-menu-sub-last-hover-border-color\";s:0:\"\";s:36:\"jet-menu-sub-hover-box-shadow-switch\";s:5:\"false\";s:35:\"jet-menu-sub-hover-box-shadow-inset\";s:5:\"false\";s:35:\"jet-menu-sub-hover-box-shadow-color\";s:0:\"\";s:31:\"jet-menu-sub-hover-box-shadow-h\";s:0:\"\";s:31:\"jet-menu-sub-hover-box-shadow-v\";s:0:\"\";s:34:\"jet-menu-sub-hover-box-shadow-blur\";s:0:\"\";s:36:\"jet-menu-sub-hover-box-shadow-spread\";s:0:\"\";s:32:\"jet-menu-sub-border-radius-hover\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:26:\"jet-menu-sub-padding-hover\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:25:\"jet-menu-sub-margin-hover\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:30:\"jet-menu-sub-text-color-active\";s:0:\"\";s:30:\"jet-menu-sub-desc-color-active\";s:0:\"\";s:30:\"jet-menu-sub-icon-color-active\";s:0:\"\";s:31:\"jet-menu-sub-arrow-color-active\";s:0:\"\";s:26:\"jet-menu-sub-active-switch\";s:5:\"false\";s:25:\"jet-menu-sub-active-color\";s:7:\"#ffffff\";s:35:\"jet-menu-sub-active-gradient-switch\";s:5:\"false\";s:32:\"jet-menu-sub-active-second-color\";s:0:\"\";s:29:\"jet-menu-sub-active-direction\";s:5:\"right\";s:25:\"jet-menu-sub-active-image\";s:0:\"\";s:28:\"jet-menu-sub-active-position\";s:0:\"\";s:30:\"jet-menu-sub-active-attachment\";s:0:\"\";s:26:\"jet-menu-sub-active-repeat\";s:0:\"\";s:24:\"jet-menu-sub-active-size\";s:0:\"\";s:33:\"jet-menu-sub-active-border-switch\";s:5:\"false\";s:32:\"jet-menu-sub-active-border-style\";s:0:\"\";s:32:\"jet-menu-sub-active-border-width\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:32:\"jet-menu-sub-active-border-color\";s:0:\"\";s:39:\"jet-menu-sub-first-active-border-switch\";s:5:\"false\";s:38:\"jet-menu-sub-first-active-border-style\";s:0:\"\";s:38:\"jet-menu-sub-first-active-border-width\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:38:\"jet-menu-sub-first-active-border-color\";s:0:\"\";s:38:\"jet-menu-sub-last-active-border-switch\";s:5:\"false\";s:37:\"jet-menu-sub-last-active-border-style\";s:0:\"\";s:37:\"jet-menu-sub-last-active-border-width\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:37:\"jet-menu-sub-last-active-border-color\";s:0:\"\";s:37:\"jet-menu-sub-active-box-shadow-switch\";s:5:\"false\";s:36:\"jet-menu-sub-active-box-shadow-inset\";s:5:\"false\";s:36:\"jet-menu-sub-active-box-shadow-color\";s:0:\"\";s:32:\"jet-menu-sub-active-box-shadow-h\";s:0:\"\";s:32:\"jet-menu-sub-active-box-shadow-v\";s:0:\"\";s:35:\"jet-menu-sub-active-box-shadow-blur\";s:0:\"\";s:37:\"jet-menu-sub-active-box-shadow-spread\";s:0:\"\";s:33:\"jet-menu-sub-border-radius-active\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:27:\"jet-menu-sub-padding-active\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:26:\"jet-menu-sub-margin-active\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:22:\"jet-menu-top-icon-size\";s:0:\"\";s:24:\"jet-menu-top-icon-margin\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:30:\"jet-menu-top-icon-ver-position\";s:6:\"center\";s:30:\"jet-menu-top-icon-hor-position\";s:0:\"\";s:23:\"jet-menu-top-icon-order\";s:0:\"\";s:22:\"jet-menu-sub-icon-size\";s:0:\"\";s:24:\"jet-menu-sub-icon-margin\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:30:\"jet-menu-sub-icon-ver-position\";s:0:\"\";s:30:\"jet-menu-sub-icon-hor-position\";s:0:\"\";s:23:\"jet-menu-sub-icon-order\";s:0:\"\";s:29:\"jet-menu-top-badge-text-color\";s:0:\"\";s:25:\"jet-menu-top-badge-switch\";s:5:\"false\";s:30:\"jet-menu-top-badge-font-family\";s:0:\"\";s:25:\"jet-menu-top-badge-subset\";s:0:\"\";s:28:\"jet-menu-top-badge-font-size\";s:0:\"\";s:30:\"jet-menu-top-badge-line-height\";s:0:\"\";s:30:\"jet-menu-top-badge-font-weight\";s:0:\"\";s:33:\"jet-menu-top-badge-text-transform\";s:0:\"\";s:29:\"jet-menu-top-badge-font-style\";s:0:\"\";s:33:\"jet-menu-top-badge-letter-spacing\";s:0:\"\";s:28:\"jet-menu-top-badge-bg-switch\";s:5:\"false\";s:27:\"jet-menu-top-badge-bg-color\";s:7:\"#ffffff\";s:37:\"jet-menu-top-badge-bg-gradient-switch\";s:5:\"false\";s:34:\"jet-menu-top-badge-bg-second-color\";s:0:\"\";s:31:\"jet-menu-top-badge-bg-direction\";s:5:\"right\";s:27:\"jet-menu-top-badge-bg-image\";s:0:\"\";s:30:\"jet-menu-top-badge-bg-position\";s:0:\"\";s:32:\"jet-menu-top-badge-bg-attachment\";s:0:\"\";s:28:\"jet-menu-top-badge-bg-repeat\";s:0:\"\";s:26:\"jet-menu-top-badge-bg-size\";s:0:\"\";s:32:\"jet-menu-top-badge-border-switch\";s:5:\"false\";s:31:\"jet-menu-top-badge-border-style\";s:0:\"\";s:31:\"jet-menu-top-badge-border-width\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:31:\"jet-menu-top-badge-border-color\";s:0:\"\";s:36:\"jet-menu-top-badge-box-shadow-switch\";s:5:\"false\";s:35:\"jet-menu-top-badge-box-shadow-inset\";s:5:\"false\";s:35:\"jet-menu-top-badge-box-shadow-color\";s:0:\"\";s:31:\"jet-menu-top-badge-box-shadow-h\";s:0:\"\";s:31:\"jet-menu-top-badge-box-shadow-v\";s:0:\"\";s:34:\"jet-menu-top-badge-box-shadow-blur\";s:0:\"\";s:36:\"jet-menu-top-badge-box-shadow-spread\";s:0:\"\";s:32:\"jet-menu-top-badge-border-radius\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:26:\"jet-menu-top-badge-padding\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:25:\"jet-menu-top-badge-margin\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:31:\"jet-menu-top-badge-ver-position\";s:0:\"\";s:31:\"jet-menu-top-badge-hor-position\";s:0:\"\";s:24:\"jet-menu-top-badge-order\";s:0:\"\";s:23:\"jet-menu-top-badge-hide\";s:5:\"false\";s:29:\"jet-menu-sub-badge-text-color\";s:0:\"\";s:25:\"jet-menu-sub-badge-switch\";s:5:\"false\";s:30:\"jet-menu-sub-badge-font-family\";s:0:\"\";s:25:\"jet-menu-sub-badge-subset\";s:0:\"\";s:28:\"jet-menu-sub-badge-font-size\";s:0:\"\";s:30:\"jet-menu-sub-badge-line-height\";s:0:\"\";s:30:\"jet-menu-sub-badge-font-weight\";s:0:\"\";s:33:\"jet-menu-sub-badge-text-transform\";s:0:\"\";s:29:\"jet-menu-sub-badge-font-style\";s:0:\"\";s:33:\"jet-menu-sub-badge-letter-spacing\";s:0:\"\";s:28:\"jet-menu-sub-badge-bg-switch\";s:5:\"false\";s:27:\"jet-menu-sub-badge-bg-color\";s:7:\"#ffffff\";s:37:\"jet-menu-sub-badge-bg-gradient-switch\";s:5:\"false\";s:34:\"jet-menu-sub-badge-bg-second-color\";s:0:\"\";s:31:\"jet-menu-sub-badge-bg-direction\";s:5:\"right\";s:27:\"jet-menu-sub-badge-bg-image\";s:0:\"\";s:30:\"jet-menu-sub-badge-bg-position\";s:0:\"\";s:32:\"jet-menu-sub-badge-bg-attachment\";s:0:\"\";s:28:\"jet-menu-sub-badge-bg-repeat\";s:0:\"\";s:26:\"jet-menu-sub-badge-bg-size\";s:0:\"\";s:32:\"jet-menu-sub-badge-border-switch\";s:5:\"false\";s:31:\"jet-menu-sub-badge-border-style\";s:0:\"\";s:31:\"jet-menu-sub-badge-border-width\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:31:\"jet-menu-sub-badge-border-color\";s:0:\"\";s:36:\"jet-menu-sub-badge-box-shadow-switch\";s:5:\"false\";s:35:\"jet-menu-sub-badge-box-shadow-inset\";s:5:\"false\";s:35:\"jet-menu-sub-badge-box-shadow-color\";s:0:\"\";s:31:\"jet-menu-sub-badge-box-shadow-h\";s:0:\"\";s:31:\"jet-menu-sub-badge-box-shadow-v\";s:0:\"\";s:34:\"jet-menu-sub-badge-box-shadow-blur\";s:0:\"\";s:36:\"jet-menu-sub-badge-box-shadow-spread\";s:0:\"\";s:32:\"jet-menu-sub-badge-border-radius\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:26:\"jet-menu-sub-badge-padding\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:25:\"jet-menu-sub-badge-margin\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:31:\"jet-menu-sub-badge-ver-position\";s:0:\"\";s:31:\"jet-menu-sub-badge-hor-position\";s:0:\"\";s:24:\"jet-menu-sub-badge-order\";s:0:\"\";s:23:\"jet-menu-sub-badge-hide\";s:5:\"false\";s:18:\"jet-menu-top-arrow\";s:13:\"fa-angle-down\";s:23:\"jet-menu-top-arrow-size\";s:0:\"\";s:25:\"jet-menu-top-arrow-margin\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:31:\"jet-menu-top-arrow-ver-position\";s:0:\"\";s:31:\"jet-menu-top-arrow-hor-position\";s:0:\"\";s:24:\"jet-menu-top-arrow-order\";s:0:\"\";s:18:\"jet-menu-sub-arrow\";s:14:\"fa-angle-right\";s:23:\"jet-menu-sub-arrow-size\";s:0:\"\";s:25:\"jet-menu-sub-arrow-margin\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:31:\"jet-menu-sub-arrow-ver-position\";s:0:\"\";s:31:\"jet-menu-sub-arrow-hor-position\";s:0:\"\";s:24:\"jet-menu-sub-arrow-order\";s:0:\"\";s:22:\"jet-menu-mobile-layout\";s:9:\"slide-out\";s:31:\"jet-menu-mobile-toggle-position\";s:7:\"default\";s:34:\"jet-menu-mobile-container-position\";s:5:\"right\";s:27:\"jet-menu-mobile-sub-trigger\";s:4:\"item\";s:31:\"jet-menu-mobile-sub-open-layout\";s:8:\"slide-in\";s:36:\"jet-menu-mobile-close-after-navigate\";s:5:\"false\";s:31:\"jet-menu-mobile-header-template\";s:0:\"\";s:31:\"jet-menu-mobile-before-template\";s:0:\"\";s:30:\"jet-menu-mobile-after-template\";s:0:\"\";s:27:\"jet-menu-mobile-toggle-icon\";s:7:\"fa-bars\";s:34:\"jet-menu-mobile-toggle-opened-icon\";s:8:\"fa-times\";s:27:\"jet-menu-mobile-toggle-text\";s:0:\"\";s:29:\"jet-menu-mobile-toggle-loader\";s:4:\"true\";s:25:\"jet-menu-mobile-back-text\";s:0:\"\";s:30:\"jet-menu-mobile-use-breadcrumb\";s:4:\"true\";s:31:\"jet-menu-mobile-breadcrumb-icon\";s:14:\"fa-angle-right\";s:28:\"jet-menu-mobile-toggle-color\";s:0:\"\";s:27:\"jet-menu-mobile-toggle-size\";s:0:\"\";s:33:\"jet-menu-mobile-toggle-text-color\";s:0:\"\";s:34:\"jet-menu-mobile-toggle-text-switch\";s:5:\"false\";s:39:\"jet-menu-mobile-toggle-text-font-family\";s:0:\"\";s:34:\"jet-menu-mobile-toggle-text-subset\";s:0:\"\";s:37:\"jet-menu-mobile-toggle-text-font-size\";s:0:\"\";s:39:\"jet-menu-mobile-toggle-text-line-height\";s:0:\"\";s:39:\"jet-menu-mobile-toggle-text-font-weight\";s:0:\"\";s:42:\"jet-menu-mobile-toggle-text-text-transform\";s:0:\"\";s:38:\"jet-menu-mobile-toggle-text-font-style\";s:0:\"\";s:42:\"jet-menu-mobile-toggle-text-letter-spacing\";s:0:\"\";s:32:\"jet-menu-mobile-back-text-switch\";s:5:\"false\";s:37:\"jet-menu-mobile-back-text-font-family\";s:0:\"\";s:32:\"jet-menu-mobile-back-text-subset\";s:0:\"\";s:35:\"jet-menu-mobile-back-text-font-size\";s:0:\"\";s:37:\"jet-menu-mobile-back-text-line-height\";s:0:\"\";s:37:\"jet-menu-mobile-back-text-font-weight\";s:0:\"\";s:40:\"jet-menu-mobile-back-text-text-transform\";s:0:\"\";s:36:\"jet-menu-mobile-back-text-font-style\";s:0:\"\";s:40:\"jet-menu-mobile-back-text-letter-spacing\";s:0:\"\";s:25:\"jet-menu-mobile-toggle-bg\";s:0:\"\";s:36:\"jet-menu-mobile-toggle-border-switch\";s:5:\"false\";s:35:\"jet-menu-mobile-toggle-border-style\";s:0:\"\";s:35:\"jet-menu-mobile-toggle-border-width\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:35:\"jet-menu-mobile-toggle-border-color\";s:0:\"\";s:40:\"jet-menu-mobile-toggle-box-shadow-switch\";s:5:\"false\";s:39:\"jet-menu-mobile-toggle-box-shadow-inset\";s:5:\"false\";s:39:\"jet-menu-mobile-toggle-box-shadow-color\";s:0:\"\";s:35:\"jet-menu-mobile-toggle-box-shadow-h\";s:0:\"\";s:35:\"jet-menu-mobile-toggle-box-shadow-v\";s:0:\"\";s:38:\"jet-menu-mobile-toggle-box-shadow-blur\";s:0:\"\";s:40:\"jet-menu-mobile-toggle-box-shadow-spread\";s:0:\"\";s:36:\"jet-menu-mobile-toggle-border-radius\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:30:\"jet-menu-mobile-toggle-padding\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:31:\"jet-menu-mobile-container-width\";s:0:\"\";s:38:\"jet-menu-mobile-breadcrumbs-text-color\";s:0:\"\";s:38:\"jet-menu-mobile-breadcrumbs-icon-color\";s:0:\"\";s:37:\"jet-menu-mobile-breadcrumbs-icon-size\";s:0:\"\";s:39:\"jet-menu-mobile-breadcrumbs-text-switch\";s:5:\"false\";s:44:\"jet-menu-mobile-breadcrumbs-text-font-family\";s:0:\"\";s:39:\"jet-menu-mobile-breadcrumbs-text-subset\";s:0:\"\";s:42:\"jet-menu-mobile-breadcrumbs-text-font-size\";s:0:\"\";s:44:\"jet-menu-mobile-breadcrumbs-text-line-height\";s:0:\"\";s:44:\"jet-menu-mobile-breadcrumbs-text-font-weight\";s:0:\"\";s:47:\"jet-menu-mobile-breadcrumbs-text-text-transform\";s:0:\"\";s:43:\"jet-menu-mobile-breadcrumbs-text-font-style\";s:0:\"\";s:47:\"jet-menu-mobile-breadcrumbs-text-letter-spacing\";s:0:\"\";s:28:\"jet-menu-mobile-container-bg\";s:0:\"\";s:39:\"jet-menu-mobile-container-border-switch\";s:5:\"false\";s:38:\"jet-menu-mobile-container-border-style\";s:0:\"\";s:38:\"jet-menu-mobile-container-border-width\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:38:\"jet-menu-mobile-container-border-color\";s:0:\"\";s:43:\"jet-menu-mobile-container-box-shadow-switch\";s:5:\"false\";s:42:\"jet-menu-mobile-container-box-shadow-inset\";s:5:\"false\";s:42:\"jet-menu-mobile-container-box-shadow-color\";s:0:\"\";s:38:\"jet-menu-mobile-container-box-shadow-h\";s:0:\"\";s:38:\"jet-menu-mobile-container-box-shadow-v\";s:0:\"\";s:41:\"jet-menu-mobile-container-box-shadow-blur\";s:0:\"\";s:43:\"jet-menu-mobile-container-box-shadow-spread\";s:0:\"\";s:33:\"jet-menu-mobile-container-padding\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:39:\"jet-menu-mobile-container-border-radius\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:24:\"jet-menu-mobile-cover-bg\";s:0:\"\";s:36:\"jet-menu-mobile-container-close-icon\";s:8:\"fa-times\";s:35:\"jet-menu-mobile-container-back-icon\";s:13:\"fa-angle-left\";s:37:\"jet-menu-mobile-container-close-color\";s:0:\"\";s:41:\"jet-menu-mobile-container-back-text-color\";s:0:\"\";s:36:\"jet-menu-mobile-container-close-size\";s:0:\"\";s:28:\"jet-mobile-items-label-color\";s:0:\"\";s:35:\"jet-mobile-items-label-color-active\";s:0:\"\";s:29:\"jet-mobile-items-label-switch\";s:5:\"false\";s:34:\"jet-mobile-items-label-font-family\";s:0:\"\";s:29:\"jet-mobile-items-label-subset\";s:0:\"\";s:32:\"jet-mobile-items-label-font-size\";s:0:\"\";s:34:\"jet-mobile-items-label-line-height\";s:0:\"\";s:34:\"jet-mobile-items-label-font-weight\";s:0:\"\";s:37:\"jet-mobile-items-label-text-transform\";s:0:\"\";s:33:\"jet-mobile-items-label-font-style\";s:0:\"\";s:37:\"jet-mobile-items-label-letter-spacing\";s:0:\"\";s:28:\"jet-mobile-items-desc-enable\";s:5:\"false\";s:27:\"jet-mobile-items-desc-color\";s:0:\"\";s:34:\"jet-mobile-items-desc-color-active\";s:0:\"\";s:28:\"jet-mobile-items-desc-switch\";s:5:\"false\";s:33:\"jet-mobile-items-desc-font-family\";s:0:\"\";s:28:\"jet-mobile-items-desc-subset\";s:0:\"\";s:31:\"jet-mobile-items-desc-font-size\";s:0:\"\";s:33:\"jet-mobile-items-desc-line-height\";s:0:\"\";s:33:\"jet-mobile-items-desc-font-weight\";s:0:\"\";s:36:\"jet-mobile-items-desc-text-transform\";s:0:\"\";s:32:\"jet-mobile-items-desc-font-style\";s:0:\"\";s:36:\"jet-mobile-items-desc-letter-spacing\";s:0:\"\";s:32:\"jet-mobile-items-divider-enabled\";s:5:\"false\";s:30:\"jet-mobile-items-divider-color\";s:0:\"\";s:30:\"jet-mobile-items-divider-width\";s:1:\"1\";s:29:\"jet-mobile-items-icon-enabled\";s:4:\"true\";s:27:\"jet-mobile-items-icon-color\";s:0:\"\";s:26:\"jet-mobile-items-icon-size\";s:0:\"\";s:34:\"jet-mobile-items-icon-ver-position\";s:6:\"center\";s:28:\"jet-mobile-items-icon-margin\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:30:\"jet-mobile-items-badge-enabled\";s:4:\"true\";s:28:\"jet-mobile-items-badge-color\";s:0:\"\";s:29:\"jet-mobile-items-badge-switch\";s:5:\"false\";s:34:\"jet-mobile-items-badge-font-family\";s:0:\"\";s:29:\"jet-mobile-items-badge-subset\";s:0:\"\";s:32:\"jet-mobile-items-badge-font-size\";s:0:\"\";s:34:\"jet-mobile-items-badge-line-height\";s:0:\"\";s:34:\"jet-mobile-items-badge-font-weight\";s:0:\"\";s:37:\"jet-mobile-items-badge-text-transform\";s:0:\"\";s:33:\"jet-mobile-items-badge-font-style\";s:0:\"\";s:37:\"jet-mobile-items-badge-letter-spacing\";s:0:\"\";s:31:\"jet-mobile-items-badge-bg-color\";s:0:\"\";s:35:\"jet-mobile-items-badge-ver-position\";s:3:\"top\";s:30:\"jet-mobile-items-badge-padding\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:36:\"jet-mobile-items-badge-border-radius\";a:6:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:9:\"is_linked\";s:4:\"true\";s:5:\"units\";s:2:\"px\";}s:30:\"jet-mobile-items-dropdown-icon\";s:14:\"fa-angle-right\";s:31:\"jet-mobile-items-dropdown-color\";s:0:\"\";s:30:\"jet-mobile-items-dropdown-size\";s:0:\"\";s:23:\"jet-mobile-loader-color\";s:7:\"#3a3a3a\";}','yes'),
(419,'elementor_cpt_support','a:4:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:8:\"jet-menu\";i:3;s:8:\"jet-menu\";}','yes'),
(420,'elementor_disable_color_schemes','yes','yes'),
(421,'elementor_disable_typography_schemes','yes','yes'),
(422,'elementor_css_print_method','internal','yes'),
(423,'kava-extra-settings','a:1:{s:19:\"nucleo-mini-package\";s:4:\"true\";}','yes'),
(424,'jet-elements-settings','a:1:{s:7:\"api_key\";s:39:\"AIzaSyDlhgz2x94h0UZb7kZXOBjwAtszoCRtDLM\";}','yes'),
(425,'sidebars_widgets','a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:7:\"sidebar\";a:3:{i:0;s:8:\"search-1\";i:1;s:14:\"recent-posts-1\";i:2;s:17:\"recent-comments-1\";}s:12:\"sidebar-shop\";a:3:{i:0;s:10:\"archives-1\";i:1;s:12:\"categories-1\";i:2;s:6:\"meta-1\";}s:13:\"array_version\";i:3;}','yes'),
(427,'category_children','a:0:{}','yes'),
(428,'wp_calendar_block_has_published_posts','1','yes'),
(430,'elementor_active_kit','2512','yes'),
(431,'cache','a:4:{s:5:\"terms\";a:9:{s:40:\"73c480b4451b32d806b039b7f5c018ad352bb48a\";i:1;s:40:\"944bf33f713f647c1e1b07c0586811ec692399de\";i:2;s:40:\"9928768a6fd8f86d4cec05a56479856361b6a555\";i:3;s:40:\"ac5faa741a85c5db32dba2177bc6b16e04e22981\";i:4;s:40:\"736348de069c61c0217f794bbd9e74d86bb0d08b\";i:5;s:40:\"ff8fcb577fefcb430c442388e9f0b8739a073c4d\";i:6;s:40:\"4c230ff1ed3a2f6e8bfb5a0d4e63d19025ed7227\";i:7;s:40:\"3a48151c69adfbca767e774b3e8780c99bc4f8fd\";i:8;s:40:\"5097f8773a9155681c79dffbbf056d9e5f8b1007\";i:9;}s:7:\"term_id\";a:9:{i:9;i:1;i:1;i:2;i:8;i:3;i:6;i:4;i:7;i:5;i:4;i:6;i:3;i:7;i:2;i:8;i:5;i:9;}s:9:\"term_slug\";a:9:{s:15:\"category-calcue\";i:1;s:22:\"category-uncategorized\";i:2;s:28:\"jet_library_type-jet_archive\";i:3;s:27:\"jet_library_type-jet_footer\";i:4;s:27:\"jet_library_type-jet_header\";i:5;s:20:\"nav_menu-footer-menu\";i:6;s:18:\"nav_menu-home-menu\";i:7;s:18:\"nav_menu-main-menu\";i:8;s:22:\"nav_menu-services-menu\";i:9;}s:5:\"posts\";a:94:{i:7;i:7;i:10;i:10;i:36;i:36;i:69;i:69;i:70;i:70;i:623;i:623;i:842;i:842;i:843;i:843;i:844;i:844;i:845;i:845;i:1021;i:1021;i:1022;i:1022;i:1034;i:1034;i:1035;i:1035;i:2017;i:2017;i:2018;i:2018;i:2028;i:2028;i:2029;i:2029;i:2030;i:2030;i:2031;i:2031;i:2032;i:2032;i:2033;i:2033;i:2034;i:2034;i:2035;i:2035;i:2036;i:2036;i:2037;i:2037;i:2038;i:2038;i:2039;i:2039;i:2040;i:2040;i:2041;i:2041;i:2042;i:2042;i:2043;i:2043;i:2044;i:2044;i:2045;i:2045;i:2046;i:2046;i:2047;i:2047;i:2048;i:2048;i:2049;i:2049;i:2125;i:2125;i:2126;i:2126;i:67;i:67;i:212;i:212;i:320;i:320;i:321;i:321;i:322;i:322;i:711;i:711;i:758;i:758;i:1636;i:1636;i:1653;i:1653;i:2127;i:2127;i:2128;i:2128;i:2129;i:2129;i:2130;i:2130;i:2131;i:2131;i:2132;i:2132;i:2133;i:2133;i:2268;i:2268;i:2460;i:2460;i:2465;i:2465;i:2492;i:2492;i:50;i:50;i:52;i:52;i:54;i:54;i:56;i:56;i:58;i:58;i:60;i:60;i:323;i:323;i:324;i:324;i:325;i:325;i:326;i:326;i:327;i:327;i:328;i:328;i:329;i:329;i:330;i:330;i:331;i:331;i:332;i:332;i:333;i:333;i:334;i:334;i:335;i:335;i:336;i:336;i:5;i:5;i:62;i:62;i:64;i:64;i:677;i:677;i:678;i:678;i:679;i:679;i:680;i:680;i:681;i:681;i:682;i:682;i:683;i:683;i:684;i:684;i:685;i:685;i:686;i:686;i:1507;i:1507;}}','yes'),
(439,'jet-blocks-db-version','1.3.12','yes'),
(440,'jet-blog-db-version','2.1.22','yes'),
(441,'jet-elements-db-version','2.2.8','yes'),
(442,'jet-menu-db-version','2.0.0','yes'),
(443,'jet-tabs-db-version','2.2.2','yes'),
(714,'um_last_version_upgrade','2.8.6','yes'),
(715,'um_first_activation_date','1717490759','yes'),
(716,'um_version','2.8.6','yes'),
(717,'__ultimatemember_sitekey','btpayments.kinsta.cloud-IwbYmcAKdo0yXPbQ4nBv','yes'),
(718,'um_is_installed','1','yes'),
(719,'um_core_forms','a:3:{s:8:\"register\";i:2692;s:5:\"login\";i:2693;s:7:\"profile\";i:2694;}','yes'),
(720,'um_core_directories','a:1:{s:7:\"members\";i:2695;}','yes'),
(721,'um_options','a:197:{s:30:\"restricted_access_post_metabox\";a:2:{s:4:\"post\";i:1;s:4:\"page\";i:1;}s:31:\"disable_restriction_pre_queries\";b:0;s:19:\"uninstall_on_delete\";b:0;s:14:\"permalink_base\";s:10:\"user_login\";s:26:\"permalink_base_custom_meta\";s:0:\"\";s:12:\"display_name\";s:9:\"full_name\";s:18:\"display_name_field\";s:0:\"\";s:15:\"author_redirect\";b:1;s:12:\"members_page\";b:1;s:13:\"use_gravatars\";b:0;s:37:\"use_um_gravatar_default_builtin_image\";s:7:\"default\";s:29:\"use_um_gravatar_default_image\";b:0;s:15:\"toggle_password\";b:0;s:18:\"require_strongpass\";b:0;s:18:\"password_min_chars\";i:8;s:18:\"password_max_chars\";i:30;s:20:\"account_tab_password\";b:1;s:19:\"account_tab_privacy\";b:1;s:25:\"account_tab_notifications\";b:1;s:18:\"account_tab_delete\";b:0;s:19:\"delete_account_text\";s:151:\"Are you sure you want to delete your account? This will erase all of your account data from the site. To delete your account enter your password below.\";s:36:\"delete_account_no_pass_required_text\";s:152:\"Are you sure you want to delete your account? This will erase all of your account data from the site. To delete your account, click on the button below.\";s:12:\"account_name\";b:1;s:20:\"account_name_disable\";b:0;s:20:\"account_name_require\";b:1;s:13:\"account_email\";b:1;s:24:\"account_general_password\";b:0;s:25:\"account_hide_in_directory\";b:1;s:33:\"account_hide_in_directory_default\";s:2:\"No\";s:17:\"photo_thumb_sizes\";a:3:{i:0;i:40;i:1;i:80;i:2;i:190;}s:17:\"cover_thumb_sizes\";a:2:{i:0;i:300;i:1;i:600;}s:10:\"accessible\";i:0;s:15:\"access_redirect\";s:0:\"\";s:19:\"access_exclude_uris\";a:0:{}s:20:\"home_page_accessible\";b:1;s:24:\"category_page_accessible\";b:1;s:29:\"restricted_post_title_replace\";b:1;s:28:\"restricted_access_post_title\";s:18:\"Restricted content\";s:25:\"restricted_access_message\";s:0:\"\";s:17:\"restricted_blocks\";b:0;s:13:\"enable_blocks\";b:0;s:24:\"restricted_block_message\";s:0:\"\";s:27:\"enable_reset_password_limit\";b:1;s:27:\"reset_password_limit_number\";i:3;s:29:\"change_password_request_limit\";b:0;s:14:\"blocked_emails\";s:0:\"\";s:13:\"blocked_words\";s:47:\"admin\r\nadministrator\r\nwebmaster\r\nsupport\r\nstaff\";s:24:\"allowed_choice_callbacks\";s:0:\"\";s:26:\"allow_url_redirect_confirm\";b:1;s:14:\"default_avatar\";s:0:\"\";s:13:\"default_cover\";s:0:\"\";s:28:\"disable_profile_photo_upload\";b:0;s:21:\"profile_show_metaicon\";b:0;s:12:\"profile_menu\";b:1;s:24:\"profile_menu_default_tab\";s:4:\"main\";s:18:\"profile_menu_icons\";b:1;s:13:\"form_asterisk\";b:0;s:13:\"profile_title\";s:28:\"{display_name} | {site_name}\";s:12:\"profile_desc\";s:84:\"{display_name} is on {site_name}. Join {site_name} to view {display_name}\\\'s profile\";s:11:\"admin_email\";s:21:\"wangjun@bt-miners.com\";s:9:\"mail_from\";s:10:\"BTPayments\";s:14:\"mail_from_addr\";s:21:\"wangjun@bt-miners.com\";s:10:\"email_html\";b:1;s:25:\"image_orientation_by_exif\";b:0;s:17:\"image_compression\";i:60;s:15:\"image_max_width\";i:1000;s:15:\"cover_min_width\";i:1000;s:22:\"profile_photo_max_size\";i:999999999;s:20:\"cover_photo_max_size\";i:999999999;s:22:\"custom_roles_increment\";i:1;s:28:\"um_profile_object_cache_stop\";b:0;s:16:\"rest_api_version\";s:3:\"2.0\";s:26:\"member_directory_own_table\";b:0;s:16:\"profile_show_bio\";i:1;s:21:\"profile_show_html_bio\";b:0;s:20:\"profile_bio_maxchars\";i:180;s:15:\"profile_noindex\";b:0;s:27:\"activation_link_expiry_time\";i:0;s:19:\"lock_register_forms\";b:0;s:25:\"display_login_form_notice\";b:0;s:26:\"secure_ban_admins_accounts\";b:0;s:19:\"banned_capabilities\";a:3:{i:0;s:14:\"manage_options\";i:1;s:13:\"promote_users\";i:2;s:8:\"level_10\";}s:36:\"secure_notify_admins_banned_accounts\";b:0;s:46:\"secure_notify_admins_banned_accounts__interval\";s:7:\"instant\";s:29:\"secure_allowed_redirect_hosts\";s:0:\"\";s:15:\"delete_comments\";b:0;s:16:\"profile_tab_main\";i:1;s:24:\"profile_tab_main_privacy\";i:0;s:22:\"profile_tab_main_roles\";s:0:\"\";s:17:\"profile_tab_posts\";i:1;s:25:\"profile_tab_posts_privacy\";i:0;s:23:\"profile_tab_posts_roles\";s:0:\"\";s:20:\"profile_tab_comments\";i:1;s:28:\"profile_tab_comments_privacy\";i:0;s:26:\"profile_tab_comments_roles\";s:0:\"\";s:16:\"welcome_email_on\";b:1;s:17:\"welcome_email_sub\";s:23:\"Welcome to {site_name}!\";s:13:\"welcome_email\";s:340:\"Hi {display_name},<br /><br />Thank you for signing up with {site_name}! Your account is now active.<br /><br />{action_title}:<br /><br />{action_url} <br /><br />Your account email: {email} <br />Your account username: {username} <br /><br />If you have any problems, please contact us at {admin_email}<br /><br />Thanks,<br />{site_name}\";s:18:\"checkmail_email_on\";b:0;s:19:\"checkmail_email_sub\";s:28:\"Please activate your account\";s:15:\"checkmail_email\";s:304:\"Hi {display_name},<br /><br />Thank you for signing up with {site_name}! To activate your account, please click the link below to confirm your email address:<br /><br />{account_activation_link} <br /><br />If you have any problems, please contact us at {admin_email}<br /><br />Thanks, <br />{site_name}\";s:16:\"pending_email_on\";b:0;s:17:\"pending_email_sub\";s:30:\"[{site_name}] New user account\";s:13:\"pending_email\";s:309:\"Hi {display_name}, <br /><br />Thank you for signing up with {site_name}! Your account is currently being reviewed by a member of our team.<br /><br />Please allow us some time to process your request.<br /><br />If you have any problems, please contact us at {admin_email}<br /><br />Thanks,<br />{site_name}\";s:17:\"approved_email_on\";b:0;s:18:\"approved_email_sub\";s:41:\"Your account at {site_name} is now active\";s:14:\"approved_email\";s:437:\"Hi {display_name},<br /><br />Thank you for signing up with {site_name}! Your account has been approved and is now active.<br /><br />To login please visit the following url:<br /><br />{login_url}<br /><br />Your account email: {email}<br />Your account username: {username}<br />Set your account password: {password_reset_link}<br /><br />If you have any problems, please contact us at {admin_email}<br /><br />Thanks,<br />{site_name}\";s:17:\"rejected_email_on\";b:0;s:18:\"rejected_email_sub\";s:30:\"Your account has been rejected\";s:14:\"rejected_email\";s:288:\"Hi {display_name},<br /><br />Thank you for applying for membership to {site_name}! We have reviewed your information and unfortunately we are unable to accept you as a member at this moment.<br /><br />Please feel free to apply again at a future date.<br /><br />Thanks,<br />{site_name}\";s:17:\"inactive_email_on\";b:1;s:18:\"inactive_email_sub\";s:33:\"Your account has been deactivated\";s:14:\"inactive_email\";s:250:\"Hi {display_name},<br /><br />This is an automated email to let you know your {site_name} account has been deactivated.<br /><br />If you would like your account to be reactivated please contact us at {admin_email}<br /><br />Thanks,<br />{site_name}\";s:17:\"deletion_email_on\";b:1;s:18:\"deletion_email_sub\";s:29:\"Your account has been deleted\";s:14:\"deletion_email\";s:355:\"Hi {display_name},<br /><br />This is an automated email to let you know your {site_name} account has been deleted. All of your personal information has been permanently deleted and you will no longer be able to login to {site_name}.<br /><br />If your account has been deleted by accident please contact us at {admin_email} <br />Thanks,<br />{site_name}\";s:16:\"resetpw_email_on\";b:1;s:17:\"resetpw_email_sub\";s:19:\"Reset your password\";s:13:\"resetpw_email\";s:303:\"Hi {display_name},<br /><br />We received a request to reset the password for your account. If you made this request, click the link below to change your password:<br /><br />{password_reset_link}<br /><br />If you didn\'t make this request, you can ignore this email <br /><br />Thanks,<br />{site_name}\";s:18:\"changedpw_email_on\";b:1;s:19:\"changedpw_email_sub\";s:42:\"Your {site_name} password has been changed\";s:15:\"changedpw_email\";s:307:\"Hi {display_name},<br /><br />You recently changed the password associated with your {site_name} account.<br /><br />If you did not make this change and believe your {site_name} account has been compromised, please contact us at the following email address: {admin_email}<br /><br />Thanks,<br />{site_name}\";s:23:\"changedaccount_email_on\";b:1;s:24:\"changedaccount_email_sub\";s:39:\"Your account at {site_name} was updated\";s:20:\"changedaccount_email\";s:278:\"Hi {display_name},<br /><br />You recently updated your {site_name} account.<br /><br />If you did not make this change and believe your {site_name} account has been compromised, please contact us at the following email address: {admin_email}<br /><br />Thanks,<br />{site_name}\";s:24:\"notification_new_user_on\";b:1;s:25:\"notification_new_user_sub\";s:30:\"[{site_name}] New user account\";s:21:\"notification_new_user\";s:211:\"{display_name} has just created an account on {site_name}. To view their profile click here:<br /><br />{user_profile_link}<br /><br />Here is the submitted registration form:<br /><br />{submitted_registration}\";s:22:\"notification_review_on\";b:0;s:23:\"notification_review_sub\";s:38:\"[{site_name}] New user awaiting review\";s:19:\"notification_review\";s:277:\"{display_name} has just applied for membership to {site_name} and is waiting to be reviewed.<br /><br />To review this member please click the following link:<br /><br />{user_profile_link}<br /><br />Here is the submitted registration form:<br /><br />{submitted_registration}\";s:24:\"notification_deletion_on\";b:0;s:25:\"notification_deletion_sub\";s:29:\"[{site_name}] Account deleted\";s:21:\"notification_deletion\";s:58:\"{display_name} has just deleted their {site_name} account.\";s:22:\"suspicious-activity_on\";b:1;s:23:\"suspicious-activity_sub\";s:41:\"[{site_name}] Suspicious Account Activity\";s:19:\"suspicious-activity\";s:107:\"This is to inform you that there are suspicious activities with the following accounts: {user_profile_link}\";s:9:\"core_user\";i:2696;s:10:\"core_login\";i:2697;s:13:\"core_register\";i:2698;s:12:\"core_members\";i:2699;s:11:\"core_logout\";i:2700;s:12:\"core_account\";i:2701;s:19:\"core_password-reset\";i:2702;s:17:\"profile_show_name\";i:1;s:25:\"profile_show_social_links\";i:0;s:19:\"profile_header_menu\";s:2:\"bc\";s:18:\"profile_empty_text\";i:1;s:22:\"profile_empty_text_emo\";i:1;s:12:\"profile_role\";a:0:{}s:16:\"profile_template\";s:7:\"profile\";s:17:\"profile_max_width\";s:6:\"1000px\";s:22:\"profile_area_max_width\";s:5:\"600px\";s:13:\"profile_align\";s:6:\"center\";s:13:\"profile_icons\";s:5:\"label\";s:28:\"profile_disable_photo_upload\";i:0;s:17:\"profile_photosize\";s:3:\"190\";s:21:\"profile_cover_enabled\";i:1;s:17:\"profile_coversize\";s:8:\"original\";s:19:\"profile_cover_ratio\";s:5:\"2.7:1\";s:19:\"profile_photocorner\";s:1:\"1\";s:17:\"profile_header_bg\";s:0:\"\";s:24:\"profile_primary_btn_word\";s:14:\"Update Profile\";s:21:\"profile_secondary_btn\";s:1:\"1\";s:26:\"profile_secondary_btn_word\";s:6:\"Cancel\";s:13:\"register_role\";s:1:\"0\";s:17:\"register_template\";s:8:\"register\";s:18:\"register_max_width\";s:5:\"450px\";s:14:\"register_align\";s:6:\"center\";s:14:\"register_icons\";s:5:\"label\";s:25:\"register_primary_btn_word\";s:8:\"Register\";s:22:\"register_secondary_btn\";i:1;s:27:\"register_secondary_btn_word\";s:5:\"Login\";s:26:\"register_secondary_btn_url\";s:0:\"\";s:14:\"login_template\";s:5:\"login\";s:15:\"login_max_width\";s:5:\"450px\";s:11:\"login_align\";s:6:\"center\";s:11:\"login_icons\";s:5:\"label\";s:22:\"login_primary_btn_word\";s:5:\"Login\";s:22:\"login_forgot_pass_link\";i:1;s:21:\"login_show_rememberme\";i:1;s:19:\"login_secondary_btn\";i:1;s:24:\"login_secondary_btn_word\";s:8:\"Register\";s:23:\"login_secondary_btn_url\";s:0:\"\";s:18:\"directory_template\";s:7:\"members\";s:16:\"directory_header\";s:21:\"{total_users} Members\";s:23:\"directory_header_single\";s:20:\"{total_users} Member\";s:14:\"pages_settings\";s:1:\"1\";s:28:\"terms_conditions_account_tab\";b:1;s:29:\"terms_conditions_agreement_on\";i:1;s:30:\"terms_conditions_agreement_sub\";s:32:\"{site_name} - Terms & Conditions\";s:33:\"terms_conditions_account_tab_hide\";b:0;s:39:\"terms_conditions_account_tab_content_id\";i:52;s:40:\"terms_conditions_account_tab_toggle_show\";s:0:\"\";s:40:\"terms_conditions_account_tab_toggle_hide\";s:0:\"\";s:38:\"terms_conditions_account_tab_agreement\";s:0:\"\";s:39:\"terms_conditions_account_tab_error_text\";s:0:\"\";}','yes'),
(722,'um_role_subscriber_meta','a:34:{s:13:\"_um_is_custom\";s:1:\"0\";s:12:\"_um_priority\";i:0;s:22:\"_um_can_access_wpadmin\";b:0;s:24:\"_um_can_not_see_adminbar\";b:1;s:21:\"_um_can_edit_everyone\";b:0;s:18:\"_um_can_edit_roles\";s:0:\"\";s:23:\"_um_can_delete_everyone\";b:0;s:20:\"_um_can_delete_roles\";s:0:\"\";s:20:\"_um_can_edit_profile\";b:1;s:22:\"_um_can_delete_profile\";b:1;s:16:\"_um_can_view_all\";b:1;s:18:\"_um_can_view_roles\";s:0:\"\";s:28:\"_um_can_make_private_profile\";b:0;s:30:\"_um_can_access_private_profile\";b:0;s:19:\"_um_profile_noindex\";s:0:\"\";s:20:\"_um_default_homepage\";b:1;s:21:\"_um_redirect_homepage\";s:0:\"\";s:10:\"_um_status\";s:7:\"pending\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";s:20:\"_um_auto_approve_url\";s:0:\"\";s:24:\"_um_login_email_activate\";b:0;s:20:\"_um_checkmail_action\";s:12:\"show_message\";s:21:\"_um_checkmail_message\";s:147:\"Thank you for registering. Before you can login we need you to activate your account by clicking the activation link in the email we just sent you.\";s:17:\"_um_checkmail_url\";s:0:\"\";s:22:\"_um_url_email_activate\";s:0:\"\";s:18:\"_um_pending_action\";s:12:\"show_message\";s:19:\"_um_pending_message\";s:170:\"Thank you for applying for membership to our site. We will review your details and send you an email letting you know whether your application has been successful or not.\";s:15:\"_um_pending_url\";s:0:\"\";s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:22:\"_um_login_redirect_url\";s:0:\"\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:23:\"_um_logout_redirect_url\";s:0:\"\";s:16:\"_um_after_delete\";s:13:\"redirect_home\";s:23:\"_um_delete_redirect_url\";s:0:\"\";}','yes'),
(723,'um_role_author_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),
(724,'um_role_contributor_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),
(725,'um_role_editor_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),
(726,'um_role_administrator_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:1;s:24:\"_um_can_not_see_adminbar\";i:0;s:21:\"_um_can_edit_everyone\";i:1;s:23:\"_um_can_delete_everyone\";i:1;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:20:\"_um_default_homepage\";i:1;s:15:\"_um_after_login\";s:14:\"redirect_admin\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:1;s:30:\"_um_can_access_private_profile\";i:1;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),
(729,'_transient_um_count_users_approved','3','yes'),
(730,'widget_um_search_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(741,'um_existing_rows_2692','a:1:{i:0;s:9:\"_um_row_1\";}','yes'),
(742,'um_form_rowdata_2692','a:1:{s:9:\"_um_row_1\";a:5:{s:4:\"type\";s:3:\"row\";s:2:\"id\";s:9:\"_um_row_1\";s:8:\"sub_rows\";i:1;s:4:\"cols\";i:1;s:6:\"origin\";s:9:\"_um_row_1\";}}','yes'),
(773,'um_existing_rows_2693','a:1:{i:0;s:9:\"_um_row_1\";}','yes'),
(774,'um_form_rowdata_2693','a:1:{s:9:\"_um_row_1\";a:5:{s:4:\"type\";s:3:\"row\";s:2:\"id\";s:9:\"_um_row_1\";s:8:\"sub_rows\";i:1;s:4:\"cols\";i:1;s:6:\"origin\";s:9:\"_um_row_1\";}}','yes'),
(775,'um_fa_version','6.5.2','no');
INSERT INTO `wp_options` VALUES
(776,'um_icons_list','a:2045:{s:8:\"fas fa-0\";a:2:{s:5:\"label\";s:1:\"0\";s:6:\"search\";a:6:{i:0;s:10:\"Digit Zero\";i:1;s:4:\"nada\";i:2;s:4:\"none\";i:3;s:4:\"zero\";i:4;s:5:\"zilch\";i:5;s:1:\"0\";}}s:8:\"fas fa-1\";a:2:{s:5:\"label\";s:1:\"1\";s:6:\"search\";a:3:{i:0;s:9:\"Digit One\";i:1;s:3:\"one\";i:2;s:1:\"1\";}}s:8:\"fas fa-2\";a:2:{s:5:\"label\";s:1:\"2\";s:6:\"search\";a:3:{i:0;s:9:\"Digit Two\";i:1;s:3:\"two\";i:2;s:1:\"2\";}}s:8:\"fas fa-3\";a:2:{s:5:\"label\";s:1:\"3\";s:6:\"search\";a:3:{i:0;s:11:\"Digit Three\";i:1;s:5:\"three\";i:2;s:1:\"3\";}}s:8:\"fas fa-4\";a:2:{s:5:\"label\";s:1:\"4\";s:6:\"search\";a:3:{i:0;s:10:\"Digit Four\";i:1;s:4:\"four\";i:2;s:1:\"4\";}}s:8:\"fas fa-5\";a:2:{s:5:\"label\";s:1:\"5\";s:6:\"search\";a:3:{i:0;s:10:\"Digit Five\";i:1;s:4:\"five\";i:2;s:1:\"5\";}}s:8:\"fas fa-6\";a:2:{s:5:\"label\";s:1:\"6\";s:6:\"search\";a:3:{i:0;s:9:\"Digit Six\";i:1;s:3:\"six\";i:2;s:1:\"6\";}}s:8:\"fas fa-7\";a:2:{s:5:\"label\";s:1:\"7\";s:6:\"search\";a:3:{i:0;s:11:\"Digit Seven\";i:1;s:5:\"seven\";i:2;s:1:\"7\";}}s:8:\"fas fa-8\";a:2:{s:5:\"label\";s:1:\"8\";s:6:\"search\";a:3:{i:0;s:11:\"Digit Eight\";i:1;s:5:\"eight\";i:2;s:1:\"8\";}}s:8:\"fas fa-9\";a:2:{s:5:\"label\";s:1:\"9\";s:6:\"search\";a:3:{i:0;s:10:\"Digit Nine\";i:1;s:4:\"nine\";i:2;s:1:\"9\";}}s:15:\"fab fa-42-group\";a:2:{s:5:\"label\";s:8:\"42.group\";s:6:\"search\";a:2:{i:0;s:8:\"42-group\";i:1;s:8:\"42.group\";}}s:12:\"fab fa-500px\";a:2:{s:5:\"label\";s:5:\"500px\";s:6:\"search\";a:1:{i:0;s:5:\"500px\";}}s:8:\"fas fa-a\";a:2:{s:5:\"label\";s:1:\"A\";s:6:\"search\";a:4:{i:0;s:22:\"Latin Capital Letter A\";i:1;s:20:\"Latin Small Letter A\";i:2;s:6:\"letter\";i:3;s:1:\"a\";}}s:22:\"fab fa-accessible-icon\";a:2:{s:5:\"label\";s:15:\"Accessible Icon\";s:6:\"search\";a:9:{i:0;s:13:\"accessibility\";i:1;s:8:\"disabled\";i:2;s:8:\"handicap\";i:3;s:6:\"person\";i:4;s:3:\"uer\";i:5;s:10:\"wheelchair\";i:6;s:14:\"wheelchair-alt\";i:7;s:15:\"accessible-icon\";i:8;s:15:\"accessible icon\";}}s:15:\"fab fa-accusoft\";a:2:{s:5:\"label\";s:8:\"Accusoft\";s:6:\"search\";a:1:{i:0;s:8:\"accusoft\";}}s:19:\"fas fa-address-book\";a:2:{s:5:\"label\";s:20:\"Address Book (solid)\";s:6:\"search\";a:11:{i:0;s:7:\"contact\";i:1;s:9:\"directory\";i:2;s:8:\"employee\";i:3;s:5:\"index\";i:4;s:17:\"little black book\";i:5;s:9:\"portfolio\";i:6;s:7:\"rolodex\";i:7;s:3:\"uer\";i:8;s:8:\"username\";i:9;s:12:\"address-book\";i:10;s:12:\"address book\";}}s:19:\"far fa-address-book\";a:2:{s:5:\"label\";s:22:\"Address Book (regular)\";s:6:\"search\";a:11:{i:0;s:7:\"contact\";i:1;s:9:\"directory\";i:2;s:8:\"employee\";i:3;s:5:\"index\";i:4;s:17:\"little black book\";i:5;s:9:\"portfolio\";i:6;s:7:\"rolodex\";i:7;s:3:\"uer\";i:8;s:8:\"username\";i:9;s:12:\"address-book\";i:10;s:12:\"address book\";}}s:19:\"fas fa-address-card\";a:2:{s:5:\"label\";s:20:\"Address Card (solid)\";s:6:\"search\";a:13:{i:0;s:5:\"about\";i:1;s:7:\"contact\";i:2;s:8:\"employee\";i:3;s:2:\"id\";i:4;s:14:\"identification\";i:5;s:9:\"portfolio\";i:6;s:8:\"postcard\";i:7;s:7:\"profile\";i:8;s:12:\"registration\";i:9;s:3:\"uer\";i:10;s:8:\"username\";i:11;s:12:\"address-card\";i:12;s:12:\"address card\";}}s:19:\"far fa-address-card\";a:2:{s:5:\"label\";s:22:\"Address Card (regular)\";s:6:\"search\";a:13:{i:0;s:5:\"about\";i:1;s:7:\"contact\";i:2;s:8:\"employee\";i:3;s:2:\"id\";i:4;s:14:\"identification\";i:5;s:9:\"portfolio\";i:6;s:8:\"postcard\";i:7;s:7:\"profile\";i:8;s:12:\"registration\";i:9;s:3:\"uer\";i:10;s:8:\"username\";i:11;s:12:\"address-card\";i:12;s:12:\"address card\";}}s:10:\"fab fa-adn\";a:2:{s:5:\"label\";s:7:\"App.net\";s:6:\"search\";a:2:{i:0;s:3:\"adn\";i:1;s:7:\"app.net\";}}s:15:\"fab fa-adversal\";a:2:{s:5:\"label\";s:8:\"Adversal\";s:6:\"search\";a:1:{i:0;s:8:\"adversal\";}}s:21:\"fab fa-affiliatetheme\";a:2:{s:5:\"label\";s:14:\"affiliatetheme\";s:6:\"search\";a:1:{i:0;s:14:\"affiliatetheme\";}}s:13:\"fab fa-airbnb\";a:2:{s:5:\"label\";s:6:\"Airbnb\";s:6:\"search\";a:1:{i:0;s:6:\"airbnb\";}}s:14:\"fab fa-algolia\";a:2:{s:5:\"label\";s:7:\"Algolia\";s:6:\"search\";a:1:{i:0;s:7:\"algolia\";}}s:19:\"fas fa-align-center\";a:2:{s:5:\"label\";s:12:\"Align Center\";s:6:\"search\";a:6:{i:0;s:6:\"format\";i:1;s:6:\"middle\";i:2;s:9:\"paragraph\";i:3;s:4:\"text\";i:4;s:12:\"align-center\";i:5;s:12:\"align center\";}}s:20:\"fas fa-align-justify\";a:2:{s:5:\"label\";s:13:\"Align Justify\";s:6:\"search\";a:5:{i:0;s:6:\"format\";i:1;s:9:\"paragraph\";i:2;s:4:\"text\";i:3;s:13:\"align-justify\";i:4;s:13:\"align justify\";}}s:17:\"fas fa-align-left\";a:2:{s:5:\"label\";s:10:\"Align Left\";s:6:\"search\";a:5:{i:0;s:6:\"format\";i:1;s:9:\"paragraph\";i:2;s:4:\"text\";i:3;s:10:\"align-left\";i:4;s:10:\"align left\";}}s:18:\"fas fa-align-right\";a:2:{s:5:\"label\";s:11:\"Align Right\";s:6:\"search\";a:5:{i:0;s:6:\"format\";i:1;s:9:\"paragraph\";i:2;s:4:\"text\";i:3;s:11:\"align-right\";i:4;s:11:\"align right\";}}s:13:\"fab fa-alipay\";a:2:{s:5:\"label\";s:6:\"Alipay\";s:6:\"search\";a:1:{i:0;s:6:\"alipay\";}}s:13:\"fab fa-amazon\";a:2:{s:5:\"label\";s:6:\"Amazon\";s:6:\"search\";a:1:{i:0;s:6:\"amazon\";}}s:17:\"fab fa-amazon-pay\";a:2:{s:5:\"label\";s:10:\"Amazon Pay\";s:6:\"search\";a:2:{i:0;s:10:\"amazon-pay\";i:1;s:10:\"amazon pay\";}}s:13:\"fab fa-amilia\";a:2:{s:5:\"label\";s:6:\"Amilia\";s:6:\"search\";a:1:{i:0;s:6:\"amilia\";}}s:13:\"fas fa-anchor\";a:2:{s:5:\"label\";s:6:\"Anchor\";s:6:\"search\";a:12:{i:0;s:6:\"anchor\";i:1;s:5:\"berth\";i:2;s:4:\"boat\";i:3;s:4:\"dock\";i:4;s:5:\"embed\";i:5;s:4:\"link\";i:6;s:8:\"maritime\";i:7;s:4:\"moor\";i:8;s:4:\"port\";i:9;s:6:\"secure\";i:10;s:4:\"ship\";i:11;s:4:\"tool\";}}s:26:\"fas fa-anchor-circle-check\";a:2:{s:5:\"label\";s:19:\"Anchor Circle Check\";s:6:\"search\";a:10:{i:0;s:6:\"enable\";i:1;s:6:\"marina\";i:2;s:12:\"not affected\";i:3;s:2:\"ok\";i:4;s:4:\"okay\";i:5;s:4:\"port\";i:6;s:8:\"validate\";i:7;s:7:\"working\";i:8;s:19:\"anchor-circle-check\";i:9;s:19:\"anchor circle check\";}}s:32:\"fas fa-anchor-circle-exclamation\";a:2:{s:5:\"label\";s:25:\"Anchor Circle Exclamation\";s:6:\"search\";a:6:{i:0;s:8:\"affected\";i:1;s:6:\"failed\";i:2;s:6:\"marina\";i:3;s:4:\"port\";i:4;s:25:\"anchor-circle-exclamation\";i:5;s:25:\"anchor circle exclamation\";}}s:26:\"fas fa-anchor-circle-xmark\";a:2:{s:5:\"label\";s:19:\"Anchor Circle Xmark\";s:6:\"search\";a:6:{i:0;s:7:\"destroy\";i:1;s:6:\"marina\";i:2;s:4:\"port\";i:3;s:7:\"uncheck\";i:4;s:19:\"anchor-circle-xmark\";i:5;s:19:\"anchor circle xmark\";}}s:18:\"fas fa-anchor-lock\";a:2:{s:5:\"label\";s:11:\"Anchor Lock\";s:6:\"search\";a:9:{i:0;s:6:\"closed\";i:1;s:8:\"lockdown\";i:2;s:6:\"marina\";i:3;s:7:\"padlock\";i:4;s:4:\"port\";i:5;s:7:\"privacy\";i:6;s:10:\"quarantine\";i:7;s:11:\"anchor-lock\";i:8;s:11:\"anchor lock\";}}s:14:\"fab fa-android\";a:2:{s:5:\"label\";s:7:\"Android\";s:6:\"search\";a:2:{i:0;s:5:\"robot\";i:1;s:7:\"android\";}}s:16:\"fab fa-angellist\";a:2:{s:5:\"label\";s:9:\"AngelList\";s:6:\"search\";a:1:{i:0;s:9:\"angellist\";}}s:17:\"fas fa-angle-down\";a:2:{s:5:\"label\";s:10:\"Angle Down\";s:6:\"search\";a:8:{i:0;s:14:\"Down Arrowhead\";i:1;s:5:\"arrow\";i:2;s:5:\"caret\";i:3;s:8:\"download\";i:4;s:6:\"expand\";i:5;s:6:\"insert\";i:6;s:10:\"angle-down\";i:7;s:10:\"angle down\";}}s:17:\"fas fa-angle-left\";a:2:{s:5:\"label\";s:10:\"Angle Left\";s:6:\"search\";a:8:{i:0;s:41:\"Single Left-Pointing Angle Quotation Mark\";i:1;s:5:\"arrow\";i:2;s:4:\"back\";i:3;s:5:\"caret\";i:4;s:4:\"less\";i:5;s:8:\"previous\";i:6;s:10:\"angle-left\";i:7;s:10:\"angle left\";}}s:18:\"fas fa-angle-right\";a:2:{s:5:\"label\";s:11:\"Angle Right\";s:6:\"search\";a:8:{i:0;s:42:\"Single Right-Pointing Angle Quotation Mark\";i:1;s:5:\"arrow\";i:2;s:4:\"care\";i:3;s:7:\"forward\";i:4;s:4:\"more\";i:5;s:4:\"next\";i:6;s:11:\"angle-right\";i:7;s:11:\"angle right\";}}s:15:\"fas fa-angle-up\";a:2:{s:5:\"label\";s:8:\"Angle Up\";s:6:\"search\";a:8:{i:0;s:12:\"Up Arrowhead\";i:1;s:5:\"arrow\";i:2;s:5:\"caret\";i:3;s:8:\"collapse\";i:4;s:7:\"upgrade\";i:5;s:6:\"upload\";i:6;s:8:\"angle-up\";i:7;s:8:\"angle up\";}}s:18:\"fas fa-angles-down\";a:2:{s:5:\"label\";s:11:\"Angles Down\";s:6:\"search\";a:6:{i:0;s:6:\"arrows\";i:1;s:5:\"caret\";i:2;s:8:\"download\";i:3;s:6:\"expand\";i:4;s:11:\"angles-down\";i:5;s:11:\"angles down\";}}s:18:\"fas fa-angles-left\";a:2:{s:5:\"label\";s:11:\"Angles Left\";s:6:\"search\";a:9:{i:0;s:41:\"Left-Pointing Double Angle Quotation Mark\";i:1;s:6:\"arrows\";i:2;s:4:\"back\";i:3;s:5:\"caret\";i:4;s:5:\"laquo\";i:5;s:8:\"previous\";i:6;s:5:\"quote\";i:7;s:11:\"angles-left\";i:8;s:11:\"angles left\";}}s:19:\"fas fa-angles-right\";a:2:{s:5:\"label\";s:12:\"Angles Right\";s:6:\"search\";a:10:{i:0;s:42:\"Right-Pointing Double Angle Quotation Mark\";i:1;s:6:\"arrows\";i:2;s:5:\"caret\";i:3;s:7:\"forward\";i:4;s:4:\"more\";i:5;s:4:\"next\";i:6;s:5:\"quote\";i:7;s:5:\"raquo\";i:8;s:12:\"angles-right\";i:9;s:12:\"angles right\";}}s:16:\"fas fa-angles-up\";a:2:{s:5:\"label\";s:9:\"Angles Up\";s:6:\"search\";a:6:{i:0;s:6:\"arrows\";i:1;s:5:\"caret\";i:2;s:8:\"collapse\";i:3;s:6:\"upload\";i:4;s:9:\"angles-up\";i:5;s:9:\"angles up\";}}s:20:\"fab fa-angrycreative\";a:2:{s:5:\"label\";s:14:\"Angry Creative\";s:6:\"search\";a:2:{i:0;s:13:\"angrycreative\";i:1;s:14:\"angry creative\";}}s:14:\"fab fa-angular\";a:2:{s:5:\"label\";s:7:\"Angular\";s:6:\"search\";a:1:{i:0;s:7:\"angular\";}}s:11:\"fas fa-ankh\";a:2:{s:5:\"label\";s:4:\"Ankh\";s:6:\"search\";a:9:{i:0;s:4:\"Ankh\";i:1;s:6:\"amulet\";i:2;s:6:\"copper\";i:3;s:19:\"coptic christianity\";i:4;s:5:\"copts\";i:5;s:11:\"crux ansata\";i:6;s:5:\"egypt\";i:7;s:5:\"venus\";i:8;s:4:\"ankh\";}}s:16:\"fab fa-app-store\";a:2:{s:5:\"label\";s:9:\"App Store\";s:6:\"search\";a:2:{i:0;s:9:\"app-store\";i:1;s:9:\"app store\";}}s:20:\"fab fa-app-store-ios\";a:2:{s:5:\"label\";s:13:\"iOS App Store\";s:6:\"search\";a:2:{i:0;s:13:\"app-store-ios\";i:1;s:13:\"ios app store\";}}s:12:\"fab fa-apper\";a:2:{s:5:\"label\";s:16:\"Apper Systems AB\";s:6:\"search\";a:2:{i:0;s:5:\"apper\";i:1;s:16:\"apper systems ab\";}}s:12:\"fab fa-apple\";a:2:{s:5:\"label\";s:5:\"Apple\";s:6:\"search\";a:7:{i:0;s:5:\"fruit\";i:1;s:3:\"ios\";i:2;s:3:\"mac\";i:3;s:16:\"operating system\";i:4;s:2:\"os\";i:5;s:3:\"osx\";i:6;s:5:\"apple\";}}s:16:\"fab fa-apple-pay\";a:2:{s:5:\"label\";s:9:\"Apple Pay\";s:6:\"search\";a:2:{i:0;s:9:\"apple-pay\";i:1;s:9:\"apple pay\";}}s:18:\"fas fa-apple-whole\";a:2:{s:5:\"label\";s:11:\"Apple Whole\";s:6:\"search\";a:14:{i:0;s:5:\"apple\";i:1;s:4:\"fall\";i:2;s:5:\"fruit\";i:3;s:4:\"fuji\";i:4;s:5:\"green\";i:5;s:11:\"green apple\";i:6;s:9:\"macintosh\";i:7;s:7:\"orchard\";i:8;s:3:\"red\";i:9;s:9:\"red apple\";i:10;s:8:\"seasonal\";i:11;s:5:\"vegan\";i:12;s:11:\"apple-whole\";i:13;s:11:\"apple whole\";}}s:14:\"fas fa-archway\";a:2:{s:5:\"label\";s:7:\"Archway\";s:6:\"search\";a:6:{i:0;s:3:\"arc\";i:1;s:8:\"monument\";i:2;s:4:\"road\";i:3;s:6:\"street\";i:4;s:6:\"tunnel\";i:5;s:7:\"archway\";}}s:17:\"fas fa-arrow-down\";a:2:{s:5:\"label\";s:10:\"Arrow Down\";s:6:\"search\";a:4:{i:0;s:15:\"Downwards Arrow\";i:1;s:8:\"download\";i:2;s:10:\"arrow-down\";i:3;s:10:\"arrow down\";}}s:21:\"fas fa-arrow-down-1-9\";a:2:{s:5:\"label\";s:14:\"Arrow Down 1 9\";s:6:\"search\";a:7:{i:0;s:7:\"arrange\";i:1;s:6:\"filter\";i:2;s:7:\"numbers\";i:3;s:5:\"order\";i:4;s:16:\"sort-numeric-asc\";i:5;s:14:\"arrow-down-1-9\";i:6;s:14:\"arrow down 1 9\";}}s:21:\"fas fa-arrow-down-9-1\";a:2:{s:5:\"label\";s:14:\"Arrow Down 9 1\";s:6:\"search\";a:7:{i:0;s:7:\"arrange\";i:1;s:6:\"filter\";i:2;s:7:\"numbers\";i:3;s:5:\"order\";i:4;s:16:\"sort-numeric-asc\";i:5;s:14:\"arrow-down-9-1\";i:6;s:14:\"arrow down 9 1\";}}s:21:\"fas fa-arrow-down-a-z\";a:2:{s:5:\"label\";s:14:\"Arrow Down A Z\";s:6:\"search\";a:7:{i:0;s:12:\"alphabetical\";i:1;s:7:\"arrange\";i:2;s:6:\"filter\";i:3;s:5:\"order\";i:4;s:14:\"sort-alpha-asc\";i:5;s:14:\"arrow-down-a-z\";i:6;s:14:\"arrow down a z\";}}s:22:\"fas fa-arrow-down-long\";a:2:{s:5:\"label\";s:15:\"Arrow Down Long\";s:6:\"search\";a:4:{i:0;s:8:\"download\";i:1;s:15:\"long-arrow-down\";i:2;s:15:\"arrow-down-long\";i:3;s:15:\"arrow down long\";}}s:28:\"fas fa-arrow-down-short-wide\";a:2:{s:5:\"label\";s:21:\"Arrow Down Short Wide\";s:6:\"search\";a:6:{i:0;s:7:\"arrange\";i:1;s:6:\"filter\";i:2;s:5:\"order\";i:3;s:15:\"sort-amount-asc\";i:4;s:21:\"arrow-down-short-wide\";i:5;s:21:\"arrow down short wide\";}}s:32:\"fas fa-arrow-down-up-across-line\";a:2:{s:5:\"label\";s:25:\"Arrow Down Up Across Line\";s:6:\"search\";a:5:{i:0;s:6:\"border\";i:1;s:8:\"crossing\";i:2;s:8:\"transfer\";i:3;s:25:\"arrow-down-up-across-line\";i:4;s:25:\"arrow down up across line\";}}s:25:\"fas fa-arrow-down-up-lock\";a:2:{s:5:\"label\";s:18:\"Arrow Down Up Lock\";s:6:\"search\";a:10:{i:0;s:6:\"border\";i:1;s:6:\"closed\";i:2;s:8:\"crossing\";i:3;s:8:\"lockdown\";i:4;s:7:\"padlock\";i:5;s:7:\"privacy\";i:6;s:10:\"quarantine\";i:7;s:8:\"transfer\";i:8;s:18:\"arrow-down-up-lock\";i:9;s:18:\"arrow down up lock\";}}s:28:\"fas fa-arrow-down-wide-short\";a:2:{s:5:\"label\";s:21:\"Arrow Down Wide Short\";s:6:\"search\";a:7:{i:0;s:7:\"arrange\";i:1;s:6:\"filter\";i:2;s:6:\"number\";i:3;s:5:\"order\";i:4;s:15:\"sort-amount-asc\";i:5;s:21:\"arrow-down-wide-short\";i:6;s:21:\"arrow down wide short\";}}s:21:\"fas fa-arrow-down-z-a\";a:2:{s:5:\"label\";s:14:\"Arrow Down Z A\";s:6:\"search\";a:7:{i:0;s:12:\"alphabetical\";i:1;s:7:\"arrange\";i:2;s:6:\"filter\";i:3;s:5:\"order\";i:4;s:14:\"sort-alpha-asc\";i:5;s:14:\"arrow-down-z-a\";i:6;s:14:\"arrow down z a\";}}s:17:\"fas fa-arrow-left\";a:2:{s:5:\"label\";s:10:\"Arrow Left\";s:6:\"search\";a:5:{i:0;s:15:\"Leftwards Arrow\";i:1;s:4:\"back\";i:2;s:8:\"previous\";i:3;s:10:\"arrow-left\";i:4;s:10:\"arrow left\";}}s:22:\"fas fa-arrow-left-long\";a:2:{s:5:\"label\";s:15:\"Arrow Left Long\";s:6:\"search\";a:5:{i:0;s:4:\"back\";i:1;s:15:\"long-arrow-left\";i:2;s:8:\"previous\";i:3;s:15:\"arrow-left-long\";i:4;s:15:\"arrow left long\";}}s:20:\"fas fa-arrow-pointer\";a:2:{s:5:\"label\";s:13:\"Arrow Pointer\";s:6:\"search\";a:5:{i:0;s:5:\"arrow\";i:1;s:6:\"cursor\";i:2;s:6:\"select\";i:3;s:13:\"arrow-pointer\";i:4;s:13:\"arrow pointer\";}}s:18:\"fas fa-arrow-right\";a:2:{s:5:\"label\";s:11:\"Arrow Right\";s:6:\"search\";a:5:{i:0;s:16:\"Rightwards Arrow\";i:1;s:7:\"forward\";i:2;s:4:\"next\";i:3;s:11:\"arrow-right\";i:4;s:11:\"arrow right\";}}s:29:\"fas fa-arrow-right-arrow-left\";a:2:{s:5:\"label\";s:22:\"Arrow Right Arrow Left\";s:6:\"search\";a:9:{i:0;s:37:\"Rightwards Arrow Over Leftwards Arrow\";i:1;s:5:\"arrow\";i:2;s:6:\"arrows\";i:3;s:11:\"reciprocate\";i:4;s:6:\"return\";i:5;s:4:\"swap\";i:6;s:8:\"transfer\";i:7;s:22:\"arrow-right-arrow-left\";i:8;s:22:\"arrow right arrow left\";}}s:31:\"fas fa-arrow-right-from-bracket\";a:2:{s:5:\"label\";s:24:\"Arrow Right From Bracket\";s:6:\"search\";a:7:{i:0;s:5:\"arrow\";i:1;s:4:\"exit\";i:2;s:5:\"leave\";i:3;s:7:\"log out\";i:4;s:6:\"logout\";i:5;s:24:\"arrow-right-from-bracket\";i:6;s:24:\"arrow right from bracket\";}}s:23:\"fas fa-arrow-right-long\";a:2:{s:5:\"label\";s:16:\"Arrow Right Long\";s:6:\"search\";a:5:{i:0;s:7:\"forward\";i:1;s:16:\"long-arrow-right\";i:2;s:4:\"next\";i:3;s:16:\"arrow-right-long\";i:4;s:16:\"arrow right long\";}}s:29:\"fas fa-arrow-right-to-bracket\";a:2:{s:5:\"label\";s:22:\"Arrow Right To Bracket\";s:6:\"search\";a:13:{i:0;s:5:\"arrow\";i:1;s:5:\"enter\";i:2;s:6:\"insert\";i:3;s:4:\"join\";i:4;s:6:\"log in\";i:5;s:5:\"login\";i:6;s:7:\"sign in\";i:7;s:7:\"sign up\";i:8;s:7:\"sign-in\";i:9;s:6:\"signin\";i:10;s:6:\"signup\";i:11;s:22:\"arrow-right-to-bracket\";i:12;s:22:\"arrow right to bracket\";}}s:26:\"fas fa-arrow-right-to-city\";a:2:{s:5:\"label\";s:19:\"Arrow Right To City\";s:6:\"search\";a:8:{i:0;s:8:\"building\";i:1;s:4:\"city\";i:2;s:6:\"exodus\";i:3;s:6:\"insert\";i:4;s:5:\"rural\";i:5;s:5:\"urban\";i:6;s:19:\"arrow-right-to-city\";i:7;s:19:\"arrow right to city\";}}s:24:\"fas fa-arrow-rotate-left\";a:2:{s:5:\"label\";s:17:\"Arrow Rotate Left\";s:6:\"search\";a:10:{i:0;s:31:\"Anticlockwise Open Circle Arrow\";i:1;s:4:\"back\";i:2;s:9:\"control z\";i:3;s:8:\"exchange\";i:4;s:4:\"oops\";i:5;s:6:\"return\";i:6;s:6:\"rotate\";i:7;s:4:\"swap\";i:8;s:17:\"arrow-rotate-left\";i:9;s:17:\"arrow rotate left\";}}s:25:\"fas fa-arrow-rotate-right\";a:2:{s:5:\"label\";s:18:\"Arrow Rotate Right\";s:6:\"search\";a:9:{i:0;s:27:\"Clockwise Open Circle Arrow\";i:1;s:7:\"forward\";i:2;s:7:\"refresh\";i:3;s:6:\"reload\";i:4;s:5:\"renew\";i:5;s:6:\"repeat\";i:6;s:5:\"retry\";i:7;s:18:\"arrow-rotate-right\";i:8;s:18:\"arrow rotate right\";}}s:23:\"fas fa-arrow-trend-down\";a:2:{s:5:\"label\";s:16:\"Arrow Trend Down\";s:6:\"search\";a:5:{i:0;s:4:\"line\";i:1;s:6:\"stocks\";i:2;s:5:\"trend\";i:3;s:16:\"arrow-trend-down\";i:4;s:16:\"arrow trend down\";}}s:21:\"fas fa-arrow-trend-up\";a:2:{s:5:\"label\";s:14:\"Arrow Trend Up\";s:6:\"search\";a:5:{i:0;s:4:\"line\";i:1;s:6:\"stocks\";i:2;s:5:\"trend\";i:3;s:14:\"arrow-trend-up\";i:4;s:14:\"arrow trend up\";}}s:22:\"fas fa-arrow-turn-down\";a:2:{s:5:\"label\";s:15:\"Arrow Turn Down\";s:6:\"search\";a:3:{i:0;s:5:\"arrow\";i:1;s:15:\"arrow-turn-down\";i:2;s:15:\"arrow turn down\";}}s:20:\"fas fa-arrow-turn-up\";a:2:{s:5:\"label\";s:13:\"Arrow Turn Up\";s:6:\"search\";a:3:{i:0;s:5:\"arrow\";i:1;s:13:\"arrow-turn-up\";i:2;s:13:\"arrow turn up\";}}s:15:\"fas fa-arrow-up\";a:2:{s:5:\"label\";s:8:\"Arrow Up\";s:6:\"search\";a:6:{i:0;s:13:\"Upwards Arrow\";i:1;s:7:\"forward\";i:2;s:7:\"upgrade\";i:3;s:6:\"upload\";i:4;s:8:\"arrow-up\";i:5;s:8:\"arrow up\";}}s:19:\"fas fa-arrow-up-1-9\";a:2:{s:5:\"label\";s:12:\"Arrow Up 1 9\";s:6:\"search\";a:7:{i:0;s:7:\"arrange\";i:1;s:6:\"filter\";i:2;s:7:\"numbers\";i:3;s:5:\"order\";i:4;s:17:\"sort-numeric-desc\";i:5;s:12:\"arrow-up-1-9\";i:6;s:12:\"arrow up 1 9\";}}s:19:\"fas fa-arrow-up-9-1\";a:2:{s:5:\"label\";s:12:\"Arrow Up 9 1\";s:6:\"search\";a:7:{i:0;s:7:\"arrange\";i:1;s:6:\"filter\";i:2;s:7:\"numbers\";i:3;s:5:\"order\";i:4;s:17:\"sort-numeric-desc\";i:5;s:12:\"arrow-up-9-1\";i:6;s:12:\"arrow up 9 1\";}}s:19:\"fas fa-arrow-up-a-z\";a:2:{s:5:\"label\";s:12:\"Arrow Up A Z\";s:6:\"search\";a:7:{i:0;s:12:\"alphabetical\";i:1;s:7:\"arrange\";i:2;s:6:\"filter\";i:3;s:5:\"order\";i:4;s:15:\"sort-alpha-desc\";i:5;s:12:\"arrow-up-a-z\";i:6;s:12:\"arrow up a z\";}}s:28:\"fas fa-arrow-up-from-bracket\";a:2:{s:5:\"label\";s:21:\"Arrow Up From Bracket\";s:6:\"search\";a:6:{i:0;s:5:\"share\";i:1;s:8:\"transfer\";i:2;s:7:\"upgrade\";i:3;s:6:\"upload\";i:4;s:21:\"arrow-up-from-bracket\";i:5;s:21:\"arrow up from bracket\";}}s:33:\"fas fa-arrow-up-from-ground-water\";a:2:{s:5:\"label\";s:26:\"Arrow Up From Ground Water\";s:6:\"search\";a:7:{i:0;s:11:\"groundwater\";i:1;s:6:\"spring\";i:2;s:7:\"upgrade\";i:3;s:12:\"water supply\";i:4;s:11:\"water table\";i:5;s:26:\"arrow-up-from-ground-water\";i:6;s:26:\"arrow up from ground water\";}}s:31:\"fas fa-arrow-up-from-water-pump\";a:2:{s:5:\"label\";s:24:\"Arrow Up From Water Pump\";s:6:\"search\";a:8:{i:0;s:5:\"flood\";i:1;s:11:\"groundwater\";i:2;s:4:\"pump\";i:3;s:11:\"submersible\";i:4;s:9:\"sump pump\";i:5;s:7:\"upgrade\";i:6;s:24:\"arrow-up-from-water-pump\";i:7;s:24:\"arrow up from water pump\";}}s:20:\"fas fa-arrow-up-long\";a:2:{s:5:\"label\";s:13:\"Arrow Up Long\";s:6:\"search\";a:4:{i:0;s:13:\"long-arrow-up\";i:1;s:6:\"upload\";i:2;s:13:\"arrow-up-long\";i:3;s:13:\"arrow up long\";}}s:26:\"fas fa-arrow-up-right-dots\";a:2:{s:5:\"label\";s:19:\"Arrow Up Right Dots\";s:6:\"search\";a:6:{i:0;s:6:\"growth\";i:1;s:8:\"increase\";i:2;s:10:\"population\";i:3;s:7:\"upgrade\";i:4;s:19:\"arrow-up-right-dots\";i:5;s:19:\"arrow up right dots\";}}s:33:\"fas fa-arrow-up-right-from-square\";a:2:{s:5:\"label\";s:26:\"Arrow Up Right From Square\";s:6:\"search\";a:7:{i:0;s:3:\"new\";i:1;s:4:\"open\";i:2;s:4:\"send\";i:3;s:5:\"share\";i:4;s:7:\"upgrade\";i:5;s:26:\"arrow-up-right-from-square\";i:6;s:26:\"arrow up right from square\";}}s:26:\"fas fa-arrow-up-short-wide\";a:2:{s:5:\"label\";s:19:\"Arrow Up Short Wide\";s:6:\"search\";a:6:{i:0;s:7:\"arrange\";i:1;s:6:\"filter\";i:2;s:5:\"order\";i:3;s:16:\"sort-amount-desc\";i:4;s:19:\"arrow-up-short-wide\";i:5;s:19:\"arrow up short wide\";}}s:26:\"fas fa-arrow-up-wide-short\";a:2:{s:5:\"label\";s:19:\"Arrow Up Wide Short\";s:6:\"search\";a:7:{i:0;s:7:\"arrange\";i:1;s:6:\"filter\";i:2;s:5:\"order\";i:3;s:16:\"sort-amount-desc\";i:4;s:7:\"upgrade\";i:5;s:19:\"arrow-up-wide-short\";i:6;s:19:\"arrow up wide short\";}}s:19:\"fas fa-arrow-up-z-a\";a:2:{s:5:\"label\";s:12:\"Arrow Up Z A\";s:6:\"search\";a:7:{i:0;s:12:\"alphabetical\";i:1;s:7:\"arrange\";i:2;s:6:\"filter\";i:3;s:5:\"order\";i:4;s:15:\"sort-alpha-desc\";i:5;s:12:\"arrow-up-z-a\";i:6;s:12:\"arrow up z a\";}}s:26:\"fas fa-arrows-down-to-line\";a:2:{s:5:\"label\";s:19:\"Arrows Down To Line\";s:6:\"search\";a:5:{i:0;s:6:\"insert\";i:1;s:10:\"scale down\";i:2;s:4:\"sink\";i:3;s:19:\"arrows-down-to-line\";i:4;s:19:\"arrows down to line\";}}s:28:\"fas fa-arrows-down-to-people\";a:2:{s:5:\"label\";s:21:\"Arrows Down To People\";s:6:\"search\";a:8:{i:0;s:8:\"affected\";i:1;s:5:\"focus\";i:2;s:6:\"insert\";i:3;s:8:\"targeted\";i:4;s:8:\"together\";i:5;s:3:\"uer\";i:6;s:21:\"arrows-down-to-people\";i:7;s:21:\"arrows down to people\";}}s:24:\"fas fa-arrows-left-right\";a:2:{s:5:\"label\";s:17:\"Arrows Left Right\";s:6:\"search\";a:7:{i:0;s:6:\"expand\";i:1;s:10:\"horizontal\";i:2;s:9:\"landscape\";i:3;s:6:\"resize\";i:4;s:4:\"wide\";i:5;s:17:\"arrows-left-right\";i:6;s:17:\"arrows left right\";}}s:32:\"fas fa-arrows-left-right-to-line\";a:2:{s:5:\"label\";s:25:\"Arrows Left Right To Line\";s:6:\"search\";a:5:{i:0;s:8:\"analysis\";i:1;s:6:\"expand\";i:2;s:3:\"gap\";i:3;s:25:\"arrows-left-right-to-line\";i:4;s:25:\"arrows left right to line\";}}s:20:\"fas fa-arrows-rotate\";a:2:{s:5:\"label\";s:13:\"Arrows Rotate\";s:6:\"search\";a:12:{i:0;s:42:\"Clockwise Right and Left Semicircle Arrows\";i:1;s:9:\"clockwise\";i:2;s:8:\"exchange\";i:3;s:6:\"modify\";i:4;s:7:\"refresh\";i:5;s:6:\"reload\";i:6;s:5:\"renew\";i:7;s:5:\"retry\";i:8;s:6:\"rotate\";i:9;s:4:\"swap\";i:10;s:13:\"arrows-rotate\";i:11;s:13:\"arrows rotate\";}}s:18:\"fas fa-arrows-spin\";a:2:{s:5:\"label\";s:11:\"Arrows Spin\";s:6:\"search\";a:6:{i:0;s:5:\"cycle\";i:1;s:6:\"rotate\";i:2;s:4:\"spin\";i:3;s:5:\"whirl\";i:4;s:11:\"arrows-spin\";i:5;s:11:\"arrows spin\";}}s:31:\"fas fa-arrows-split-up-and-left\";a:2:{s:5:\"label\";s:24:\"Arrows Split Up And Left\";s:6:\"search\";a:4:{i:0;s:5:\"agile\";i:1;s:5:\"split\";i:2;s:24:\"arrows-split-up-and-left\";i:3;s:24:\"arrows split up and left\";}}s:23:\"fas fa-arrows-to-circle\";a:2:{s:5:\"label\";s:16:\"Arrows To Circle\";s:6:\"search\";a:9:{i:0;s:6:\"center\";i:1;s:11:\"concentrate\";i:2;s:10:\"coordinate\";i:3;s:12:\"coordination\";i:4;s:11:\"focal point\";i:5;s:5:\"focus\";i:6;s:6:\"insert\";i:7;s:16:\"arrows-to-circle\";i:8;s:16:\"arrows to circle\";}}s:20:\"fas fa-arrows-to-dot\";a:2:{s:5:\"label\";s:13:\"Arrows To Dot\";s:6:\"search\";a:8:{i:0;s:14:\"assembly point\";i:1;s:6:\"center\";i:2;s:8:\"condense\";i:3;s:5:\"focus\";i:4;s:6:\"insert\";i:5;s:8:\"minimize\";i:6;s:13:\"arrows-to-dot\";i:7;s:13:\"arrows to dot\";}}s:20:\"fas fa-arrows-to-eye\";a:2:{s:5:\"label\";s:13:\"Arrows To Eye\";s:6:\"search\";a:5:{i:0;s:6:\"center\";i:1;s:22:\"coordinated assessment\";i:2;s:5:\"focus\";i:3;s:13:\"arrows-to-eye\";i:4;s:13:\"arrows to eye\";}}s:24:\"fas fa-arrows-turn-right\";a:2:{s:5:\"label\";s:17:\"Arrows Turn Right\";s:6:\"search\";a:3:{i:0;s:6:\"arrows\";i:1;s:17:\"arrows-turn-right\";i:2;s:17:\"arrows turn right\";}}s:26:\"fas fa-arrows-turn-to-dots\";a:2:{s:5:\"label\";s:19:\"Arrows Turn To Dots\";s:6:\"search\";a:5:{i:0;s:11:\"destination\";i:1;s:6:\"insert\";i:2;s:5:\"nexus\";i:3;s:19:\"arrows-turn-to-dots\";i:4;s:19:\"arrows turn to dots\";}}s:21:\"fas fa-arrows-up-down\";a:2:{s:5:\"label\";s:14:\"Arrows Up Down\";s:6:\"search\";a:7:{i:0;s:6:\"expand\";i:1;s:8:\"portrait\";i:2;s:6:\"resize\";i:3;s:4:\"tall\";i:4;s:8:\"vertical\";i:5;s:14:\"arrows-up-down\";i:6;s:14:\"arrows up down\";}}s:32:\"fas fa-arrows-up-down-left-right\";a:2:{s:5:\"label\";s:25:\"Arrows Up Down Left Right\";s:6:\"search\";a:12:{i:0;s:5:\"arrow\";i:1;s:6:\"arrows\";i:2;s:6:\"bigger\";i:3;s:7:\"enlarge\";i:4;s:6:\"expand\";i:5;s:10:\"fullscreen\";i:6;s:4:\"move\";i:7;s:8:\"position\";i:8;s:7:\"reorder\";i:9;s:6:\"resize\";i:10;s:25:\"arrows-up-down-left-right\";i:11;s:25:\"arrows up down left right\";}}s:24:\"fas fa-arrows-up-to-line\";a:2:{s:5:\"label\";s:17:\"Arrows Up To Line\";s:6:\"search\";a:5:{i:0;s:4:\"rise\";i:1;s:8:\"scale up\";i:2;s:7:\"upgrade\";i:3;s:17:\"arrows-up-to-line\";i:4;s:17:\"arrows up to line\";}}s:17:\"fab fa-artstation\";a:2:{s:5:\"label\";s:10:\"Artstation\";s:6:\"search\";a:1:{i:0;s:10:\"artstation\";}}s:15:\"fas fa-asterisk\";a:2:{s:5:\"label\";s:8:\"Asterisk\";s:6:\"search\";a:8:{i:0;s:8:\"Asterisk\";i:1;s:14:\"Heavy Asterisk\";i:2;s:10:\"annotation\";i:3;s:7:\"details\";i:4;s:9:\"reference\";i:5;s:8:\"required\";i:6;s:4:\"star\";i:7;s:8:\"asterisk\";}}s:17:\"fab fa-asymmetrik\";a:2:{s:5:\"label\";s:16:\"Asymmetrik, Ltd.\";s:6:\"search\";a:2:{i:0;s:10:\"asymmetrik\";i:1;s:16:\"asymmetrik, ltd.\";}}s:9:\"fas fa-at\";a:2:{s:5:\"label\";s:2:\"At\";s:6:\"search\";a:8:{i:0;s:13:\"Commercial At\";i:1;s:7:\"address\";i:2;s:6:\"author\";i:3;s:6:\"e-mail\";i:4;s:5:\"email\";i:5;s:9:\"fluctuate\";i:6;s:6:\"handle\";i:7;s:2:\"at\";}}s:16:\"fab fa-atlassian\";a:2:{s:5:\"label\";s:9:\"Atlassian\";s:6:\"search\";a:1:{i:0;s:9:\"atlassian\";}}s:11:\"fas fa-atom\";a:2:{s:5:\"label\";s:4:\"Atom\";s:6:\"search\";a:13:{i:0;s:7:\"atheism\";i:1;s:7:\"atheist\";i:2;s:4:\"atom\";i:3;s:11:\"atom symbol\";i:4;s:9:\"chemistry\";i:5;s:8:\"electron\";i:6;s:3:\"ion\";i:7;s:7:\"isotope\";i:8;s:9:\"knowledge\";i:9;s:7:\"neutron\";i:10;s:7:\"nuclear\";i:11;s:6:\"proton\";i:12;s:7:\"science\";}}s:14:\"fab fa-audible\";a:2:{s:5:\"label\";s:7:\"Audible\";s:6:\"search\";a:1:{i:0;s:7:\"audible\";}}s:24:\"fas fa-audio-description\";a:2:{s:5:\"label\";s:17:\"Audio Description\";s:6:\"search\";a:6:{i:0;s:5:\"blind\";i:1;s:9:\"narration\";i:2;s:5:\"video\";i:3;s:6:\"visual\";i:4;s:17:\"audio-description\";i:5;s:17:\"audio description\";}}s:19:\"fas fa-austral-sign\";a:2:{s:5:\"label\";s:12:\"Austral Sign\";s:6:\"search\";a:4:{i:0;s:12:\"Austral Sign\";i:1;s:8:\"currency\";i:2;s:12:\"austral-sign\";i:3;s:12:\"austral sign\";}}s:19:\"fab fa-autoprefixer\";a:2:{s:5:\"label\";s:12:\"Autoprefixer\";s:6:\"search\";a:1:{i:0;s:12:\"autoprefixer\";}}s:14:\"fab fa-avianex\";a:2:{s:5:\"label\";s:7:\"avianex\";s:6:\"search\";a:1:{i:0;s:7:\"avianex\";}}s:13:\"fab fa-aviato\";a:2:{s:5:\"label\";s:6:\"Aviato\";s:6:\"search\";a:1:{i:0;s:6:\"aviato\";}}s:12:\"fas fa-award\";a:2:{s:5:\"label\";s:5:\"Award\";s:6:\"search\";a:9:{i:0;s:9:\"guarantee\";i:1;s:5:\"honor\";i:2;s:6:\"praise\";i:3;s:5:\"prize\";i:4;s:11:\"recognition\";i:5;s:6:\"ribbon\";i:6;s:6:\"trophy\";i:7;s:8:\"warranty\";i:8;s:5:\"award\";}}s:10:\"fab fa-aws\";a:2:{s:5:\"label\";s:25:\"Amazon Web Services (AWS)\";s:6:\"search\";a:2:{i:0;s:3:\"aws\";i:1;s:25:\"amazon web services (aws)\";}}s:8:\"fas fa-b\";a:2:{s:5:\"label\";s:1:\"B\";s:6:\"search\";a:4:{i:0;s:22:\"Latin Capital Letter B\";i:1;s:20:\"Latin Small Letter B\";i:2;s:6:\"letter\";i:3;s:1:\"b\";}}s:11:\"fas fa-baby\";a:2:{s:5:\"label\";s:4:\"Baby\";s:6:\"search\";a:3:{i:0;s:3:\"uer\";i:1;s:12:\"users-people\";i:2;s:4:\"baby\";}}s:20:\"fas fa-baby-carriage\";a:2:{s:5:\"label\";s:13:\"Baby Carriage\";s:6:\"search\";a:10:{i:0;s:5:\"buggy\";i:1;s:7:\"carrier\";i:2;s:6:\"infant\";i:3;s:4:\"push\";i:4;s:8:\"stroller\";i:5;s:14:\"transportation\";i:6;s:4:\"walk\";i:7;s:6:\"wheels\";i:8;s:13:\"baby-carriage\";i:9;s:13:\"baby carriage\";}}s:15:\"fas fa-backward\";a:2:{s:5:\"label\";s:8:\"Backward\";s:6:\"search\";a:6:{i:0;s:5:\"arrow\";i:1;s:6:\"double\";i:2;s:19:\"fast reverse button\";i:3;s:8:\"previous\";i:4;s:6:\"rewind\";i:5;s:8:\"backward\";}}s:20:\"fas fa-backward-fast\";a:2:{s:5:\"label\";s:13:\"Backward Fast\";s:6:\"search\";a:13:{i:0;s:5:\"arrow\";i:1;s:9:\"beginning\";i:2;s:5:\"first\";i:3;s:17:\"last track button\";i:4;s:8:\"previous\";i:5;s:14:\"previous scene\";i:6;s:14:\"previous track\";i:7;s:5:\"quick\";i:8;s:6:\"rewind\";i:9;s:5:\"start\";i:10;s:8:\"triangle\";i:11;s:13:\"backward-fast\";i:12;s:13:\"backward fast\";}}s:20:\"fas fa-backward-step\";a:2:{s:5:\"label\";s:13:\"Backward Step\";s:6:\"search\";a:7:{i:0;s:9:\"beginning\";i:1;s:5:\"first\";i:2;s:8:\"previous\";i:3;s:6:\"rewind\";i:4;s:5:\"start\";i:5;s:13:\"backward-step\";i:6;s:13:\"backward step\";}}s:12:\"fas fa-bacon\";a:2:{s:5:\"label\";s:5:\"Bacon\";s:6:\"search\";a:10:{i:0;s:5:\"bacon\";i:1;s:3:\"blt\";i:2;s:9:\"breakfast\";i:3;s:4:\"food\";i:4;s:3:\"ham\";i:5;s:4:\"lard\";i:6;s:4:\"meat\";i:7;s:8:\"pancetta\";i:8;s:4:\"pork\";i:9;s:6:\"rasher\";}}s:15:\"fas fa-bacteria\";a:2:{s:5:\"label\";s:8:\"Bacteria\";s:6:\"search\";a:7:{i:0;s:10:\"antibiotic\";i:1;s:8:\"antibody\";i:2;s:8:\"covid-19\";i:3;s:6:\"health\";i:4;s:8:\"organism\";i:5;s:4:\"sick\";i:6;s:8:\"bacteria\";}}s:16:\"fas fa-bacterium\";a:2:{s:5:\"label\";s:9:\"Bacterium\";s:6:\"search\";a:7:{i:0;s:10:\"antibiotic\";i:1;s:8:\"antibody\";i:2;s:8:\"covid-19\";i:3;s:6:\"health\";i:4;s:8:\"organism\";i:5;s:4:\"sick\";i:6;s:9:\"bacterium\";}}s:19:\"fas fa-bag-shopping\";a:2:{s:5:\"label\";s:12:\"Bag Shopping\";s:6:\"search\";a:7:{i:0;s:3:\"buy\";i:1;s:8:\"checkout\";i:2;s:7:\"grocery\";i:3;s:7:\"payment\";i:4;s:8:\"purchase\";i:5;s:12:\"bag-shopping\";i:6;s:12:\"bag shopping\";}}s:12:\"fas fa-bahai\";a:2:{s:5:\"label\";s:5:\"Bahai\";s:6:\"search\";a:3:{i:0;s:5:\"bahai\";i:1;s:8:\"bahá\'í\";i:2;s:4:\"star\";}}s:16:\"fas fa-baht-sign\";a:2:{s:5:\"label\";s:9:\"Baht Sign\";s:6:\"search\";a:3:{i:0;s:8:\"currency\";i:1;s:9:\"baht-sign\";i:2;s:9:\"baht sign\";}}s:10:\"fas fa-ban\";a:2:{s:5:\"label\";s:3:\"Ban\";s:6:\"search\";a:20:{i:0;s:3:\"404\";i:1;s:5:\"abort\";i:2;s:3:\"ban\";i:3;s:5:\"block\";i:4;s:6:\"cancel\";i:5;s:6:\"delete\";i:6;s:4:\"deny\";i:7;s:8:\"disabled\";i:8;s:5:\"entry\";i:9;s:6:\"failed\";i:10;s:9:\"forbidden\";i:11;s:4:\"hide\";i:12;s:2:\"no\";i:13;s:3:\"not\";i:14;s:9:\"not found\";i:15;s:8:\"prohibit\";i:16;s:10:\"prohibited\";i:17;s:6:\"remove\";i:18;s:4:\"stop\";i:19;s:5:\"trash\";}}s:18:\"fas fa-ban-smoking\";a:2:{s:5:\"label\";s:11:\"Ban Smoking\";s:6:\"search\";a:13:{i:0;s:3:\"ban\";i:1;s:6:\"cancel\";i:2;s:4:\"deny\";i:3;s:8:\"disabled\";i:4;s:9:\"forbidden\";i:5;s:2:\"no\";i:6;s:10:\"no smoking\";i:7;s:11:\"non-smoking\";i:8;s:3:\"not\";i:9;s:10:\"prohibited\";i:10;s:7:\"smoking\";i:11;s:11:\"ban-smoking\";i:12;s:11:\"ban smoking\";}}s:14:\"fas fa-bandage\";a:2:{s:5:\"label\";s:7:\"Bandage\";s:6:\"search\";a:6:{i:0;s:16:\"adhesive bandage\";i:1;s:7:\"bandage\";i:2;s:7:\"boo boo\";i:3;s:9:\"first aid\";i:4;s:6:\"modify\";i:5;s:4:\"ouch\";}}s:15:\"fab fa-bandcamp\";a:2:{s:5:\"label\";s:8:\"Bandcamp\";s:6:\"search\";a:1:{i:0;s:8:\"bandcamp\";}}s:28:\"fas fa-bangladeshi-taka-sign\";a:2:{s:5:\"label\";s:21:\"Bangladeshi Taka Sign\";s:6:\"search\";a:5:{i:0;s:3:\"bdt\";i:1;s:8:\"currency\";i:2;s:2:\"tk\";i:3;s:21:\"bangladeshi-taka-sign\";i:4;s:21:\"bangladeshi taka sign\";}}s:14:\"fas fa-barcode\";a:2:{s:5:\"label\";s:7:\"Barcode\";s:6:\"search\";a:6:{i:0;s:4:\"info\";i:1;s:5:\"laser\";i:2;s:5:\"price\";i:3;s:4:\"scan\";i:4;s:3:\"upc\";i:5;s:7:\"barcode\";}}s:11:\"fas fa-bars\";a:2:{s:5:\"label\";s:4:\"Bars\";s:6:\"search\";a:13:{i:0;s:9:\"checklist\";i:1;s:4:\"drag\";i:2;s:9:\"hamburger\";i:3;s:4:\"list\";i:4;s:4:\"menu\";i:5;s:3:\"nav\";i:6;s:10:\"navigation\";i:7;s:2:\"ol\";i:8;s:7:\"reorder\";i:9;s:8:\"settings\";i:10;s:4:\"todo\";i:11;s:2:\"ul\";i:12;s:4:\"bars\";}}s:20:\"fas fa-bars-progress\";a:2:{s:5:\"label\";s:13:\"Bars Progress\";s:6:\"search\";a:11:{i:0;s:9:\"checklist\";i:1;s:11:\"downloading\";i:2;s:9:\"downloads\";i:3;s:7:\"loading\";i:4;s:4:\"poll\";i:5;s:8:\"progress\";i:6;s:18:\"project management\";i:7;s:8:\"settings\";i:8;s:5:\"to do\";i:9;s:13:\"bars-progress\";i:10;s:13:\"bars progress\";}}s:21:\"fas fa-bars-staggered\";a:2:{s:5:\"label\";s:14:\"Bars Staggered\";s:6:\"search\";a:5:{i:0;s:4:\"flow\";i:1;s:4:\"list\";i:2;s:8:\"timeline\";i:3;s:14:\"bars-staggered\";i:4;s:14:\"bars staggered\";}}s:15:\"fas fa-baseball\";a:2:{s:5:\"label\";s:8:\"Baseball\";s:6:\"search\";a:11:{i:0;s:4:\"ball\";i:1;s:8:\"baseball\";i:2;s:4:\"foul\";i:3;s:5:\"glove\";i:4;s:8:\"hardball\";i:5;s:6:\"league\";i:6;s:7:\"leather\";i:7;s:3:\"mlb\";i:8;s:8:\"softball\";i:9;s:5:\"sport\";i:10;s:8:\"underarm\";}}s:24:\"fas fa-baseball-bat-ball\";a:2:{s:5:\"label\";s:17:\"Baseball Bat Ball\";s:6:\"search\";a:8:{i:0;s:3:\"bat\";i:1;s:6:\"league\";i:2;s:3:\"mlb\";i:3;s:7:\"slugger\";i:4;s:8:\"softball\";i:5;s:5:\"sport\";i:6;s:17:\"baseball-bat-ball\";i:7;s:17:\"baseball bat ball\";}}s:22:\"fas fa-basket-shopping\";a:2:{s:5:\"label\";s:15:\"Basket Shopping\";s:6:\"search\";a:7:{i:0;s:3:\"buy\";i:1;s:8:\"checkout\";i:2;s:7:\"grocery\";i:3;s:7:\"payment\";i:4;s:8:\"purchase\";i:5;s:15:\"basket-shopping\";i:6;s:15:\"basket shopping\";}}s:17:\"fas fa-basketball\";a:2:{s:5:\"label\";s:10:\"Basketball\";s:6:\"search\";a:6:{i:0;s:4:\"ball\";i:1;s:10:\"basketball\";i:2;s:7:\"dribble\";i:3;s:4:\"dunk\";i:4;s:4:\"hoop\";i:5;s:3:\"nba\";}}s:11:\"fas fa-bath\";a:2:{s:5:\"label\";s:4:\"Bath\";s:6:\"search\";a:6:{i:0;s:4:\"bath\";i:1;s:7:\"bathtub\";i:2;s:5:\"clean\";i:3;s:6:\"shower\";i:4;s:3:\"tub\";i:5;s:4:\"wash\";}}s:20:\"fas fa-battery-empty\";a:2:{s:5:\"label\";s:13:\"Battery Empty\";s:6:\"search\";a:6:{i:0;s:6:\"charge\";i:1;s:4:\"dead\";i:2;s:5:\"power\";i:3;s:6:\"status\";i:4;s:13:\"battery-empty\";i:5;s:13:\"battery empty\";}}s:19:\"fas fa-battery-full\";a:2:{s:5:\"label\";s:12:\"Battery Full\";s:6:\"search\";a:7:{i:0;s:6:\"batter\";i:1;s:7:\"battery\";i:2;s:6:\"charge\";i:3;s:5:\"power\";i:4;s:6:\"status\";i:5;s:12:\"battery-full\";i:6;s:12:\"battery full\";}}s:19:\"fas fa-battery-half\";a:2:{s:5:\"label\";s:12:\"Battery Half\";s:6:\"search\";a:5:{i:0;s:6:\"charge\";i:1;s:5:\"power\";i:2;s:6:\"status\";i:3;s:12:\"battery-half\";i:4;s:12:\"battery half\";}}s:22:\"fas fa-battery-quarter\";a:2:{s:5:\"label\";s:15:\"Battery Quarter\";s:6:\"search\";a:6:{i:0;s:6:\"charge\";i:1;s:3:\"low\";i:2;s:5:\"power\";i:3;s:6:\"status\";i:4;s:15:\"battery-quarter\";i:5;s:15:\"battery quarter\";}}s:29:\"fas fa-battery-three-quarters\";a:2:{s:5:\"label\";s:22:\"Battery Three Quarters\";s:6:\"search\";a:5:{i:0;s:6:\"charge\";i:1;s:5:\"power\";i:2;s:6:\"status\";i:3;s:22:\"battery-three-quarters\";i:4;s:22:\"battery three quarters\";}}s:17:\"fab fa-battle-net\";a:2:{s:5:\"label\";s:10:\"Battle.net\";s:6:\"search\";a:2:{i:0;s:10:\"battle-net\";i:1;s:10:\"battle.net\";}}s:10:\"fas fa-bed\";a:2:{s:5:\"label\";s:3:\"Bed\";s:6:\"search\";a:11:{i:0;s:8:\"hospital\";i:1;s:5:\"hotel\";i:2;s:7:\"lodging\";i:3;s:8:\"mattress\";i:4;s:7:\"patient\";i:5;s:13:\"person in bed\";i:6;s:4:\"rest\";i:7;s:5:\"sleep\";i:8;s:6:\"travel\";i:9;s:3:\"uer\";i:10;s:3:\"bed\";}}s:16:\"fas fa-bed-pulse\";a:2:{s:5:\"label\";s:9:\"Bed Pulse\";s:6:\"search\";a:10:{i:0;s:3:\"EKG\";i:1;s:3:\"bed\";i:2;s:17:\"electrocardiogram\";i:3;s:6:\"health\";i:4;s:8:\"hospital\";i:5;s:4:\"life\";i:6;s:7:\"patient\";i:7;s:5:\"vital\";i:8;s:9:\"bed-pulse\";i:9;s:9:\"bed pulse\";}}s:21:\"fas fa-beer-mug-empty\";a:2:{s:5:\"label\";s:14:\"Beer Mug Empty\";s:6:\"search\";a:14:{i:0;s:7:\"alcohol\";i:1;s:3:\"ale\";i:2;s:3:\"bar\";i:3;s:8:\"beverage\";i:4;s:4:\"brew\";i:5;s:7:\"brewery\";i:6;s:5:\"drink\";i:7;s:4:\"foam\";i:8;s:5:\"lager\";i:9;s:6:\"liquor\";i:10;s:3:\"mug\";i:11;s:5:\"stein\";i:12;s:14:\"beer-mug-empty\";i:13;s:14:\"beer mug empty\";}}s:14:\"fab fa-behance\";a:2:{s:5:\"label\";s:7:\"Behance\";s:6:\"search\";a:1:{i:0;s:7:\"behance\";}}s:11:\"fas fa-bell\";a:2:{s:5:\"label\";s:12:\"Bell (solid)\";s:6:\"search\";a:8:{i:0;s:5:\"alarm\";i:1;s:5:\"alert\";i:2;s:3:\"bel\";i:3;s:4:\"bell\";i:4;s:5:\"chime\";i:5;s:12:\"notification\";i:6;s:8:\"reminder\";i:7;s:7:\"request\";}}s:11:\"far fa-bell\";a:2:{s:5:\"label\";s:14:\"Bell (regular)\";s:6:\"search\";a:8:{i:0;s:5:\"alarm\";i:1;s:5:\"alert\";i:2;s:3:\"bel\";i:3;s:4:\"bell\";i:4;s:5:\"chime\";i:5;s:12:\"notification\";i:6;s:8:\"reminder\";i:7;s:7:\"request\";}}s:21:\"fas fa-bell-concierge\";a:2:{s:5:\"label\";s:14:\"Bell Concierge\";s:6:\"search\";a:11:{i:0;s:9:\"attention\";i:1;s:4:\"bell\";i:2;s:7:\"bellhop\";i:3;s:12:\"bellhop bell\";i:4;s:5:\"hotel\";i:5;s:12:\"receptionist\";i:6;s:7:\"request\";i:7;s:7:\"service\";i:8;s:7:\"support\";i:9;s:14:\"bell-concierge\";i:10;s:14:\"bell concierge\";}}s:17:\"fas fa-bell-slash\";a:2:{s:5:\"label\";s:18:\"Bell Slash (solid)\";s:6:\"search\";a:14:{i:0;s:5:\"alert\";i:1;s:4:\"bell\";i:2;s:15:\"bell with slash\";i:3;s:6:\"cancel\";i:4;s:8:\"disabled\";i:5;s:9:\"forbidden\";i:6;s:4:\"mute\";i:7;s:12:\"notification\";i:8;s:3:\"off\";i:9;s:5:\"quiet\";i:10;s:8:\"reminder\";i:11;s:6:\"silent\";i:12;s:10:\"bell-slash\";i:13;s:10:\"bell slash\";}}s:17:\"far fa-bell-slash\";a:2:{s:5:\"label\";s:20:\"Bell Slash (regular)\";s:6:\"search\";a:14:{i:0;s:5:\"alert\";i:1;s:4:\"bell\";i:2;s:15:\"bell with slash\";i:3;s:6:\"cancel\";i:4;s:8:\"disabled\";i:5;s:9:\"forbidden\";i:6;s:4:\"mute\";i:7;s:12:\"notification\";i:8;s:3:\"off\";i:9;s:5:\"quiet\";i:10;s:8:\"reminder\";i:11;s:6:\"silent\";i:12;s:10:\"bell-slash\";i:13;s:10:\"bell slash\";}}s:19:\"fas fa-bezier-curve\";a:2:{s:5:\"label\";s:12:\"Bezier Curve\";s:6:\"search\";a:7:{i:0;s:6:\"curves\";i:1;s:11:\"illustrator\";i:2;s:5:\"lines\";i:3;s:4:\"path\";i:4;s:6:\"vector\";i:5;s:12:\"bezier-curve\";i:6;s:12:\"bezier curve\";}}s:14:\"fas fa-bicycle\";a:2:{s:5:\"label\";s:7:\"Bicycle\";s:6:\"search\";a:6:{i:0;s:7:\"bicycle\";i:1;s:4:\"bike\";i:2;s:5:\"gears\";i:3;s:5:\"pedal\";i:4;s:14:\"transportation\";i:5;s:7:\"vehicle\";}}s:15:\"fab fa-bilibili\";a:2:{s:5:\"label\";s:8:\"Bilibili\";s:6:\"search\";a:1:{i:0;s:8:\"bilibili\";}}s:16:\"fab fa-bimobject\";a:2:{s:5:\"label\";s:9:\"BIMobject\";s:6:\"search\";a:1:{i:0;s:9:\"bimobject\";}}s:17:\"fas fa-binoculars\";a:2:{s:5:\"label\";s:10:\"Binoculars\";s:6:\"search\";a:8:{i:0;s:7:\"glasses\";i:1;s:10:\"inspection\";i:2;s:9:\"magnifier\";i:3;s:7:\"magnify\";i:4;s:6:\"scenic\";i:5;s:8:\"spyglass\";i:6;s:4:\"view\";i:7;s:10:\"binoculars\";}}s:16:\"fas fa-biohazard\";a:2:{s:5:\"label\";s:9:\"Biohazard\";s:6:\"search\";a:13:{i:0;s:9:\"biohazard\";i:1;s:8:\"covid-19\";i:2;s:6:\"danger\";i:3;s:9:\"dangerous\";i:4;s:8:\"epidemic\";i:5;s:6:\"hazmat\";i:6;s:7:\"medical\";i:7;s:8:\"pandemic\";i:8;s:11:\"radioactive\";i:9;s:4:\"sign\";i:10;s:5:\"toxic\";i:11;s:5:\"waste\";i:12;s:6:\"zombie\";}}s:16:\"fab fa-bitbucket\";a:2:{s:5:\"label\";s:9:\"Bitbucket\";s:6:\"search\";a:4:{i:0;s:9:\"atlassian\";i:1;s:16:\"bitbucket-square\";i:2;s:3:\"git\";i:3;s:9:\"bitbucket\";}}s:14:\"fab fa-bitcoin\";a:2:{s:5:\"label\";s:7:\"Bitcoin\";s:6:\"search\";a:1:{i:0;s:7:\"bitcoin\";}}s:19:\"fas fa-bitcoin-sign\";a:2:{s:5:\"label\";s:12:\"Bitcoin Sign\";s:6:\"search\";a:4:{i:0;s:12:\"Bitcoin Sign\";i:1;s:8:\"currency\";i:2;s:12:\"bitcoin-sign\";i:3;s:12:\"bitcoin sign\";}}s:11:\"fab fa-bity\";a:2:{s:5:\"label\";s:4:\"Bity\";s:6:\"search\";a:1:{i:0;s:4:\"bity\";}}s:16:\"fab fa-black-tie\";a:2:{s:5:\"label\";s:22:\"Font Awesome Black Tie\";s:6:\"search\";a:3:{i:0;s:13:\"administrator\";i:1;s:9:\"black-tie\";i:2;s:22:\"font awesome black tie\";}}s:17:\"fab fa-blackberry\";a:2:{s:5:\"label\";s:10:\"BlackBerry\";s:6:\"search\";a:1:{i:0;s:10:\"blackberry\";}}s:14:\"fas fa-blender\";a:2:{s:5:\"label\";s:7:\"Blender\";s:6:\"search\";a:6:{i:0;s:8:\"cocktail\";i:1;s:9:\"milkshake\";i:2;s:5:\"mixer\";i:3;s:5:\"puree\";i:4;s:8:\"smoothie\";i:5;s:7:\"blender\";}}s:20:\"fas fa-blender-phone\";a:2:{s:5:\"label\";s:13:\"Blender Phone\";s:6:\"search\";a:10:{i:0;s:9:\"appliance\";i:1;s:8:\"cocktail\";i:2;s:7:\"fantasy\";i:3;s:9:\"milkshake\";i:4;s:5:\"mixer\";i:5;s:5:\"puree\";i:6;s:5:\"silly\";i:7;s:8:\"smoothie\";i:8;s:13:\"blender-phone\";i:9;s:13:\"blender phone\";}}s:11:\"fas fa-blog\";a:2:{s:5:\"label\";s:4:\"Blog\";s:6:\"search\";a:9:{i:0;s:7:\"journal\";i:1;s:3:\"log\";i:2;s:6:\"online\";i:3;s:8:\"personal\";i:4;s:4:\"post\";i:5;s:7:\"web 2.0\";i:6;s:9:\"wordpress\";i:7;s:7:\"writing\";i:8;s:4:\"blog\";}}s:14:\"fab fa-blogger\";a:2:{s:5:\"label\";s:7:\"Blogger\";s:6:\"search\";a:1:{i:0;s:7:\"blogger\";}}s:16:\"fab fa-blogger-b\";a:2:{s:5:\"label\";s:9:\"Blogger B\";s:6:\"search\";a:2:{i:0;s:9:\"blogger-b\";i:1;s:9:\"blogger b\";}}s:14:\"fab fa-bluesky\";a:2:{s:5:\"label\";s:7:\"Bluesky\";s:6:\"search\";a:1:{i:0;s:7:\"bluesky\";}}s:16:\"fab fa-bluetooth\";a:2:{s:5:\"label\";s:9:\"Bluetooth\";s:6:\"search\";a:2:{i:0;s:6:\"signal\";i:1;s:9:\"bluetooth\";}}s:18:\"fab fa-bluetooth-b\";a:2:{s:5:\"label\";s:9:\"Bluetooth\";s:6:\"search\";a:2:{i:0;s:11:\"bluetooth-b\";i:1;s:9:\"bluetooth\";}}s:11:\"fas fa-bold\";a:2:{s:5:\"label\";s:4:\"Bold\";s:6:\"search\";a:4:{i:0;s:8:\"emphasis\";i:1;s:6:\"format\";i:2;s:4:\"text\";i:3;s:4:\"bold\";}}s:11:\"fas fa-bolt\";a:2:{s:5:\"label\";s:4:\"Bolt\";s:6:\"search\";a:11:{i:0;s:6:\"charge\";i:1;s:6:\"danger\";i:2;s:8:\"electric\";i:3;s:11:\"electricity\";i:4;s:5:\"flash\";i:5;s:12:\"high voltage\";i:6;s:9:\"lightning\";i:7;s:7:\"voltage\";i:8;s:7:\"weather\";i:9;s:3:\"zap\";i:10;s:4:\"bolt\";}}s:21:\"fas fa-bolt-lightning\";a:2:{s:5:\"label\";s:14:\"Bolt Lightning\";s:6:\"search\";a:7:{i:0;s:11:\"electricity\";i:1;s:5:\"flash\";i:2;s:9:\"lightning\";i:3;s:7:\"weather\";i:4;s:3:\"zap\";i:5;s:14:\"bolt-lightning\";i:6;s:14:\"bolt lightning\";}}s:11:\"fas fa-bomb\";a:2:{s:5:\"label\";s:4:\"Bomb\";s:6:\"search\";a:7:{i:0;s:4:\"bomb\";i:1;s:5:\"comic\";i:2;s:5:\"error\";i:3;s:7:\"explode\";i:4;s:4:\"fuse\";i:5;s:7:\"grenade\";i:6;s:7:\"warning\";}}s:11:\"fas fa-bone\";a:2:{s:5:\"label\";s:4:\"Bone\";s:6:\"search\";a:6:{i:0;s:4:\"bone\";i:1;s:7:\"calcium\";i:2;s:3:\"dog\";i:3;s:8:\"skeletal\";i:4;s:8:\"skeleton\";i:5;s:5:\"tibia\";}}s:11:\"fas fa-bong\";a:2:{s:5:\"label\";s:4:\"Bong\";s:6:\"search\";a:7:{i:0;s:8:\"aparatus\";i:1;s:8:\"cannabis\";i:2;s:9:\"marijuana\";i:3;s:4:\"pipe\";i:4;s:5:\"smoke\";i:5;s:7:\"smoking\";i:6;s:4:\"bong\";}}s:11:\"fas fa-book\";a:2:{s:5:\"label\";s:4:\"Book\";s:6:\"search\";a:13:{i:0;s:4:\"book\";i:1;s:5:\"cover\";i:2;s:9:\"decorated\";i:3;s:5:\"diary\";i:4;s:13:\"documentation\";i:5;s:7:\"journal\";i:6;s:9:\"knowledge\";i:7;s:7:\"library\";i:8;s:8:\"notebook\";i:9;s:30:\"notebook with decorative cover\";i:10;s:4:\"read\";i:11;s:8:\"research\";i:12;s:7:\"scholar\";}}s:17:\"fas fa-book-atlas\";a:2:{s:5:\"label\";s:10:\"Book Atlas\";s:6:\"search\";a:12:{i:0;s:4:\"book\";i:1;s:10:\"directions\";i:2;s:9:\"geography\";i:3;s:5:\"globe\";i:4;s:9:\"knowledge\";i:5;s:7:\"library\";i:6;s:3:\"map\";i:7;s:8:\"research\";i:8;s:6:\"travel\";i:9;s:10:\"wayfinding\";i:10;s:10:\"book-atlas\";i:11;s:10:\"book atlas\";}}s:17:\"fas fa-book-bible\";a:2:{s:5:\"label\";s:10:\"Book Bible\";s:6:\"search\";a:7:{i:0;s:4:\"book\";i:1;s:11:\"catholicism\";i:2;s:12:\"christianity\";i:3;s:3:\"god\";i:4;s:4:\"holy\";i:5;s:10:\"book-bible\";i:6;s:10:\"book bible\";}}s:20:\"fas fa-book-bookmark\";a:2:{s:5:\"label\";s:13:\"Book Bookmark\";s:6:\"search\";a:5:{i:0;s:9:\"knowledge\";i:1;s:7:\"library\";i:2;s:8:\"research\";i:3;s:13:\"book-bookmark\";i:4;s:13:\"book bookmark\";}}s:26:\"fas fa-book-journal-whills\";a:2:{s:5:\"label\";s:19:\"Book Journal Whills\";s:6:\"search\";a:8:{i:0;s:4:\"book\";i:1;s:5:\"force\";i:2;s:4:\"jedi\";i:3;s:4:\"sith\";i:4;s:9:\"star wars\";i:5;s:4:\"yoda\";i:6;s:19:\"book-journal-whills\";i:7;s:19:\"book journal whills\";}}s:19:\"fas fa-book-medical\";a:2:{s:5:\"label\";s:12:\"Book Medical\";s:6:\"search\";a:11:{i:0;s:5:\"diary\";i:1;s:13:\"documentation\";i:2;s:6:\"health\";i:3;s:7:\"history\";i:4;s:7:\"journal\";i:5;s:7:\"library\";i:6;s:4:\"read\";i:7;s:6:\"record\";i:8;s:8:\"research\";i:9;s:12:\"book-medical\";i:10;s:12:\"book medical\";}}s:16:\"fas fa-book-open\";a:2:{s:5:\"label\";s:9:\"Book Open\";s:6:\"search\";a:13:{i:0;s:4:\"Book\";i:1;s:4:\"book\";i:2;s:5:\"flyer\";i:3;s:9:\"knowledge\";i:4;s:7:\"library\";i:5;s:8:\"notebook\";i:6;s:4:\"open\";i:7;s:9:\"open book\";i:8;s:8:\"pamphlet\";i:9;s:7:\"reading\";i:10;s:8:\"research\";i:11;s:9:\"book-open\";i:12;s:9:\"book open\";}}s:23:\"fas fa-book-open-reader\";a:2:{s:5:\"label\";s:16:\"Book Open Reader\";s:6:\"search\";a:9:{i:0;s:5:\"flyer\";i:1;s:7:\"library\";i:2;s:8:\"notebook\";i:3;s:9:\"open book\";i:4;s:8:\"pamphlet\";i:5;s:7:\"reading\";i:6;s:8:\"research\";i:7;s:16:\"book-open-reader\";i:8;s:16:\"book open reader\";}}s:17:\"fas fa-book-quran\";a:2:{s:5:\"label\";s:10:\"Book Quran\";s:6:\"search\";a:6:{i:0;s:4:\"book\";i:1;s:5:\"islam\";i:2;s:6:\"muslim\";i:3;s:8:\"religion\";i:4;s:10:\"book-quran\";i:5;s:10:\"book quran\";}}s:17:\"fas fa-book-skull\";a:2:{s:5:\"label\";s:10:\"Book Skull\";s:6:\"search\";a:19:{i:0;s:18:\"Dungeons & Dragons\";i:1;s:10:\"crossbones\";i:2;s:3:\"d&d\";i:3;s:9:\"dark arts\";i:4;s:5:\"death\";i:5;s:3:\"dnd\";i:6;s:13:\"documentation\";i:7;s:4:\"evil\";i:8;s:7:\"fantasy\";i:9;s:9:\"halloween\";i:10;s:7:\"holiday\";i:11;s:7:\"library\";i:12;s:12:\"necronomicon\";i:13;s:4:\"read\";i:14;s:8:\"research\";i:15;s:5:\"skull\";i:16;s:5:\"spell\";i:17;s:10:\"book-skull\";i:18;s:10:\"book skull\";}}s:18:\"fas fa-book-tanakh\";a:2:{s:5:\"label\";s:11:\"Book Tanakh\";s:6:\"search\";a:6:{i:0;s:4:\"book\";i:1;s:6:\"jewish\";i:2;s:7:\"judaism\";i:3;s:8:\"religion\";i:4;s:11:\"book-tanakh\";i:5;s:11:\"book tanakh\";}}s:15:\"fas fa-bookmark\";a:2:{s:5:\"label\";s:16:\"Bookmark (solid)\";s:6:\"search\";a:9:{i:0;s:8:\"bookmark\";i:1;s:8:\"favorite\";i:2;s:7:\"library\";i:3;s:4:\"mark\";i:4;s:6:\"marker\";i:5;s:4:\"read\";i:6;s:8:\"remember\";i:7;s:8:\"research\";i:8;s:4:\"save\";}}s:15:\"far fa-bookmark\";a:2:{s:5:\"label\";s:18:\"Bookmark (regular)\";s:6:\"search\";a:9:{i:0;s:8:\"bookmark\";i:1;s:8:\"favorite\";i:2;s:7:\"library\";i:3;s:4:\"mark\";i:4;s:6:\"marker\";i:5;s:4:\"read\";i:6;s:8:\"remember\";i:7;s:8:\"research\";i:8;s:4:\"save\";}}s:16:\"fab fa-bootstrap\";a:2:{s:5:\"label\";s:9:\"Bootstrap\";s:6:\"search\";a:1:{i:0;s:9:\"bootstrap\";}}s:17:\"fas fa-border-all\";a:2:{s:5:\"label\";s:10:\"Border All\";s:6:\"search\";a:7:{i:0;s:4:\"cell\";i:1;s:4:\"grid\";i:2;s:7:\"outline\";i:3;s:6:\"stroke\";i:4;s:5:\"table\";i:5;s:10:\"border-all\";i:6;s:10:\"border all\";}}s:18:\"fas fa-border-none\";a:2:{s:5:\"label\";s:11:\"Border None\";s:6:\"search\";a:7:{i:0;s:4:\"cell\";i:1;s:4:\"grid\";i:2;s:7:\"outline\";i:3;s:6:\"stroke\";i:4;s:5:\"table\";i:5;s:11:\"border-none\";i:6;s:11:\"border none\";}}s:22:\"fas fa-border-top-left\";a:2:{s:5:\"label\";s:15:\"Border Top Left\";s:6:\"search\";a:6:{i:0;s:4:\"cell\";i:1;s:7:\"outline\";i:2;s:6:\"stroke\";i:3;s:5:\"table\";i:4;s:15:\"border-top-left\";i:5;s:15:\"border top left\";}}s:16:\"fas fa-bore-hole\";a:2:{s:5:\"label\";s:9:\"Bore Hole\";s:6:\"search\";a:6:{i:0;s:4:\"bore\";i:1;s:4:\"bury\";i:2;s:5:\"drill\";i:3;s:4:\"hole\";i:4;s:9:\"bore-hole\";i:5;s:9:\"bore hole\";}}s:11:\"fab fa-bots\";a:2:{s:5:\"label\";s:4:\"Bots\";s:6:\"search\";a:1:{i:0;s:4:\"bots\";}}s:21:\"fas fa-bottle-droplet\";a:2:{s:5:\"label\";s:14:\"Bottle Droplet\";s:6:\"search\";a:7:{i:0;s:7:\"alcohol\";i:1;s:5:\"drink\";i:2;s:3:\"oil\";i:3;s:9:\"olive oil\";i:4;s:4:\"wine\";i:5;s:14:\"bottle-droplet\";i:6;s:14:\"bottle droplet\";}}s:19:\"fas fa-bottle-water\";a:2:{s:5:\"label\";s:12:\"Bottle Water\";s:6:\"search\";a:5:{i:0;s:3:\"h2o\";i:1;s:7:\"plastic\";i:2;s:5:\"water\";i:3;s:12:\"bottle-water\";i:4;s:12:\"bottle water\";}}s:16:\"fas fa-bowl-food\";a:2:{s:5:\"label\";s:9:\"Bowl Food\";s:6:\"search\";a:6:{i:0;s:7:\"catfood\";i:1;s:7:\"dogfood\";i:2;s:4:\"food\";i:3;s:4:\"rice\";i:4;s:9:\"bowl-food\";i:5;s:9:\"bowl food\";}}s:16:\"fas fa-bowl-rice\";a:2:{s:5:\"label\";s:9:\"Bowl Rice\";s:6:\"search\";a:7:{i:0;s:6:\"boiled\";i:1;s:6:\"cooked\";i:2;s:11:\"cooked rice\";i:3;s:4:\"rice\";i:4;s:7:\"steamed\";i:5;s:9:\"bowl-rice\";i:6;s:9:\"bowl rice\";}}s:19:\"fas fa-bowling-ball\";a:2:{s:5:\"label\";s:12:\"Bowling Ball\";s:6:\"search\";a:8:{i:0;s:5:\"alley\";i:1;s:9:\"candlepin\";i:2;s:6:\"gutter\";i:3;s:4:\"lane\";i:4;s:6:\"strike\";i:5;s:6:\"tenpin\";i:6;s:12:\"bowling-ball\";i:7;s:12:\"bowling ball\";}}s:10:\"fas fa-box\";a:2:{s:5:\"label\";s:3:\"Box\";s:6:\"search\";a:6:{i:0;s:7:\"archive\";i:1;s:3:\"box\";i:2;s:9:\"container\";i:3;s:7:\"package\";i:4;s:6:\"parcel\";i:5;s:7:\"storage\";}}s:18:\"fas fa-box-archive\";a:2:{s:5:\"label\";s:11:\"Box Archive\";s:6:\"search\";a:6:{i:0;s:3:\"box\";i:1;s:7:\"package\";i:2;s:4:\"save\";i:3;s:7:\"storage\";i:4;s:11:\"box-archive\";i:5;s:11:\"box archive\";}}s:15:\"fas fa-box-open\";a:2:{s:5:\"label\";s:8:\"Box Open\";s:6:\"search\";a:7:{i:0;s:7:\"archive\";i:1;s:9:\"container\";i:2;s:7:\"package\";i:3;s:7:\"storage\";i:4;s:6:\"unpack\";i:5;s:8:\"box-open\";i:6;s:8:\"box open\";}}s:17:\"fas fa-box-tissue\";a:2:{s:5:\"label\";s:10:\"Box Tissue\";s:6:\"search\";a:9:{i:0;s:5:\"cough\";i:1;s:8:\"covid-19\";i:2;s:7:\"kleenex\";i:3;s:5:\"mucus\";i:4;s:4:\"nose\";i:5;s:6:\"sneeze\";i:6;s:4:\"snot\";i:7;s:10:\"box-tissue\";i:8;s:10:\"box tissue\";}}s:20:\"fas fa-boxes-packing\";a:2:{s:5:\"label\";s:13:\"Boxes Packing\";s:6:\"search\";a:7:{i:0;s:7:\"archive\";i:1;s:3:\"box\";i:2;s:7:\"package\";i:3;s:7:\"storage\";i:4;s:8:\"supplies\";i:5;s:13:\"boxes-packing\";i:6;s:13:\"boxes packing\";}}s:20:\"fas fa-boxes-stacked\";a:2:{s:5:\"label\";s:13:\"Boxes Stacked\";s:6:\"search\";a:6:{i:0;s:8:\"archives\";i:1;s:9:\"inventory\";i:2;s:7:\"storage\";i:3;s:9:\"warehouse\";i:4;s:13:\"boxes-stacked\";i:5;s:13:\"boxes stacked\";}}s:14:\"fas fa-braille\";a:2:{s:5:\"label\";s:7:\"Braille\";s:6:\"search\";a:6:{i:0;s:8:\"alphabet\";i:1;s:5:\"blind\";i:2;s:4:\"dots\";i:3;s:6:\"raised\";i:4;s:6:\"vision\";i:5;s:7:\"braille\";}}s:12:\"fas fa-brain\";a:2:{s:5:\"label\";s:5:\"Brain\";s:6:\"search\";a:11:{i:0;s:5:\"brain\";i:1;s:10:\"cerebellum\";i:2;s:11:\"gray matter\";i:3;s:9:\"intellect\";i:4;s:11:\"intelligent\";i:5;s:9:\"knowledge\";i:6;s:17:\"medulla oblongata\";i:7;s:4:\"mind\";i:8;s:6:\"noodle\";i:9;s:7:\"scholar\";i:10;s:3:\"wit\";}}s:12:\"fab fa-brave\";a:2:{s:5:\"label\";s:5:\"Brave\";s:6:\"search\";a:1:{i:0;s:5:\"brave\";}}s:20:\"fab fa-brave-reverse\";a:2:{s:5:\"label\";s:13:\"Brave Reverse\";s:6:\"search\";a:2:{i:0;s:13:\"brave-reverse\";i:1;s:13:\"brave reverse\";}}s:26:\"fas fa-brazilian-real-sign\";a:2:{s:5:\"label\";s:19:\"Brazilian Real Sign\";s:6:\"search\";a:3:{i:0;s:19:\"brazilian real sign\";i:1;s:8:\"currency\";i:2;s:19:\"brazilian-real-sign\";}}s:18:\"fas fa-bread-slice\";a:2:{s:5:\"label\";s:11:\"Bread Slice\";s:6:\"search\";a:14:{i:0;s:4:\"bake\";i:1;s:6:\"bakery\";i:2;s:6:\"baking\";i:3;s:5:\"dough\";i:4;s:5:\"flour\";i:5;s:6:\"gluten\";i:6;s:5:\"grain\";i:7;s:8:\"sandwich\";i:8;s:9:\"sourdough\";i:9;s:5:\"toast\";i:10;s:5:\"wheat\";i:11;s:5:\"yeast\";i:12;s:11:\"bread-slice\";i:13;s:11:\"bread slice\";}}s:13:\"fas fa-bridge\";a:2:{s:5:\"label\";s:6:\"Bridge\";s:6:\"search\";a:2:{i:0;s:6:\"bridge\";i:1;s:4:\"road\";}}s:26:\"fas fa-bridge-circle-check\";a:2:{s:5:\"label\";s:19:\"Bridge Circle Check\";s:6:\"search\";a:10:{i:0;s:6:\"bridge\";i:1;s:6:\"enable\";i:2;s:12:\"not affected\";i:3;s:2:\"ok\";i:4;s:4:\"okay\";i:5;s:4:\"road\";i:6;s:8:\"validate\";i:7;s:7:\"working\";i:8;s:19:\"bridge-circle-check\";i:9;s:19:\"bridge circle check\";}}s:32:\"fas fa-bridge-circle-exclamation\";a:2:{s:5:\"label\";s:25:\"Bridge Circle Exclamation\";s:6:\"search\";a:6:{i:0;s:8:\"affected\";i:1;s:6:\"bridge\";i:2;s:6:\"failed\";i:3;s:4:\"road\";i:4;s:25:\"bridge-circle-exclamation\";i:5;s:25:\"bridge circle exclamation\";}}s:26:\"fas fa-bridge-circle-xmark\";a:2:{s:5:\"label\";s:19:\"Bridge Circle Xmark\";s:6:\"search\";a:6:{i:0;s:6:\"bridge\";i:1;s:7:\"destroy\";i:2;s:4:\"road\";i:3;s:7:\"uncheck\";i:4;s:19:\"bridge-circle-xmark\";i:5;s:19:\"bridge circle xmark\";}}s:18:\"fas fa-bridge-lock\";a:2:{s:5:\"label\";s:11:\"Bridge Lock\";s:6:\"search\";a:9:{i:0;s:6:\"bridge\";i:1;s:6:\"closed\";i:2;s:8:\"lockdown\";i:3;s:7:\"padlock\";i:4;s:7:\"privacy\";i:5;s:10:\"quarantine\";i:6;s:4:\"road\";i:7;s:11:\"bridge-lock\";i:8;s:11:\"bridge lock\";}}s:19:\"fas fa-bridge-water\";a:2:{s:5:\"label\";s:12:\"Bridge Water\";s:6:\"search\";a:4:{i:0;s:6:\"bridge\";i:1;s:4:\"road\";i:2;s:12:\"bridge-water\";i:3;s:12:\"bridge water\";}}s:16:\"fas fa-briefcase\";a:2:{s:5:\"label\";s:9:\"Briefcase\";s:6:\"search\";a:9:{i:0;s:3:\"bag\";i:1;s:8:\"briefcas\";i:2;s:9:\"briefcase\";i:3;s:8:\"business\";i:4;s:7:\"luggage\";i:5;s:5:\"offer\";i:6;s:6:\"office\";i:7;s:9:\"portfolio\";i:8;s:4:\"work\";}}s:24:\"fas fa-briefcase-medical\";a:2:{s:5:\"label\";s:17:\"Briefcase Medical\";s:6:\"search\";a:6:{i:0;s:6:\"doctor\";i:1;s:3:\"emt\";i:2;s:9:\"first aid\";i:3;s:6:\"health\";i:4;s:17:\"briefcase-medical\";i:5;s:17:\"briefcase medical\";}}s:12:\"fas fa-broom\";a:2:{s:5:\"label\";s:5:\"Broom\";s:6:\"search\";a:11:{i:0;s:5:\"broom\";i:1;s:5:\"clean\";i:2;s:8:\"cleaning\";i:3;s:8:\"firebolt\";i:4;s:3:\"fly\";i:5;s:9:\"halloween\";i:6;s:11:\"nimbus 2000\";i:7;s:9:\"quidditch\";i:8;s:5:\"sweep\";i:9;s:8:\"sweeping\";i:10;s:5:\"witch\";}}s:17:\"fas fa-broom-ball\";a:2:{s:5:\"label\";s:10:\"Broom Ball\";s:6:\"search\";a:11:{i:0;s:4:\"ball\";i:1;s:7:\"bludger\";i:2;s:5:\"broom\";i:3;s:13:\"golden snitch\";i:4;s:12:\"harry potter\";i:5;s:8:\"hogwarts\";i:6;s:7:\"quaffle\";i:7;s:5:\"sport\";i:8;s:6:\"wizard\";i:9;s:10:\"broom-ball\";i:10;s:10:\"broom ball\";}}s:12:\"fas fa-brush\";a:2:{s:5:\"label\";s:5:\"Brush\";s:6:\"search\";a:8:{i:0;s:3:\"art\";i:1;s:8:\"bristles\";i:2;s:5:\"color\";i:3;s:6:\"handle\";i:4;s:11:\"maintenance\";i:5;s:6:\"modify\";i:6;s:5:\"paint\";i:7;s:5:\"brush\";}}s:10:\"fab fa-btc\";a:2:{s:5:\"label\";s:3:\"BTC\";s:6:\"search\";a:1:{i:0;s:3:\"btc\";}}s:13:\"fas fa-bucket\";a:2:{s:5:\"label\";s:6:\"Bucket\";s:6:\"search\";a:3:{i:0;s:6:\"bucket\";i:1;s:4:\"pail\";i:2;s:10:\"sandcastle\";}}s:13:\"fab fa-buffer\";a:2:{s:5:\"label\";s:6:\"Buffer\";s:6:\"search\";a:1:{i:0;s:6:\"buffer\";}}s:10:\"fas fa-bug\";a:2:{s:5:\"label\";s:3:\"Bug\";s:6:\"search\";a:7:{i:0;s:6:\"beetle\";i:1;s:5:\"error\";i:2;s:6:\"glitch\";i:3;s:6:\"insect\";i:4;s:6:\"repair\";i:5;s:6:\"report\";i:6;s:3:\"bug\";}}s:16:\"fas fa-bug-slash\";a:2:{s:5:\"label\";s:9:\"Bug Slash\";s:6:\"search\";a:11:{i:0;s:6:\"beetle\";i:1;s:8:\"disabled\";i:2;s:3:\"fix\";i:3;s:6:\"glitch\";i:4;s:6:\"insect\";i:5;s:8:\"optimize\";i:6;s:6:\"repair\";i:7;s:6:\"report\";i:8;s:7:\"warning\";i:9;s:9:\"bug-slash\";i:10;s:9:\"bug slash\";}}s:11:\"fas fa-bugs\";a:2:{s:5:\"label\";s:4:\"Bugs\";s:6:\"search\";a:6:{i:0;s:6:\"bedbug\";i:1;s:11:\"infestation\";i:2;s:4:\"lice\";i:3;s:6:\"plague\";i:4;s:5:\"ticks\";i:5;s:4:\"bugs\";}}s:15:\"fas fa-building\";a:2:{s:5:\"label\";s:16:\"Building (solid)\";s:6:\"search\";a:9:{i:0;s:9:\"apartment\";i:1;s:8:\"building\";i:2;s:8:\"business\";i:3;s:4:\"city\";i:4;s:7:\"company\";i:5;s:6:\"office\";i:6;s:15:\"office building\";i:7;s:5:\"urban\";i:8;s:4:\"work\";}}s:15:\"far fa-building\";a:2:{s:5:\"label\";s:18:\"Building (regular)\";s:6:\"search\";a:9:{i:0;s:9:\"apartment\";i:1;s:8:\"building\";i:2;s:8:\"business\";i:3;s:4:\"city\";i:4;s:7:\"company\";i:5;s:6:\"office\";i:6;s:15:\"office building\";i:7;s:5:\"urban\";i:8;s:4:\"work\";}}s:34:\"fas fa-building-circle-arrow-right\";a:2:{s:5:\"label\";s:27:\"Building Circle Arrow Right\";s:6:\"search\";a:6:{i:0;s:8:\"building\";i:1;s:4:\"city\";i:2;s:19:\"distribution center\";i:3;s:6:\"office\";i:4;s:27:\"building-circle-arrow-right\";i:5;s:27:\"building circle arrow right\";}}s:28:\"fas fa-building-circle-check\";a:2:{s:5:\"label\";s:21:\"Building Circle Check\";s:6:\"search\";a:11:{i:0;s:8:\"building\";i:1;s:4:\"city\";i:2;s:6:\"enable\";i:3;s:12:\"not affected\";i:4;s:6:\"office\";i:5;s:2:\"ok\";i:6;s:4:\"okay\";i:7;s:8:\"validate\";i:8;s:7:\"working\";i:9;s:21:\"building-circle-check\";i:10;s:21:\"building circle check\";}}s:34:\"fas fa-building-circle-exclamation\";a:2:{s:5:\"label\";s:27:\"Building Circle Exclamation\";s:6:\"search\";a:7:{i:0;s:8:\"affected\";i:1;s:8:\"building\";i:2;s:4:\"city\";i:3;s:6:\"failed\";i:4;s:6:\"office\";i:5;s:27:\"building-circle-exclamation\";i:6;s:27:\"building circle exclamation\";}}s:28:\"fas fa-building-circle-xmark\";a:2:{s:5:\"label\";s:21:\"Building Circle Xmark\";s:6:\"search\";a:7:{i:0;s:8:\"building\";i:1;s:4:\"city\";i:2;s:7:\"destroy\";i:3;s:6:\"office\";i:4;s:7:\"uncheck\";i:5;s:21:\"building-circle-xmark\";i:6;s:21:\"building circle xmark\";}}s:23:\"fas fa-building-columns\";a:2:{s:5:\"label\";s:16:\"Building Columns\";s:6:\"search\";a:9:{i:0;s:4:\"bank\";i:1;s:8:\"building\";i:2;s:7:\"college\";i:3;s:9:\"education\";i:4;s:11:\"institution\";i:5;s:6:\"museum\";i:6;s:8:\"students\";i:7;s:16:\"building-columns\";i:8;s:16:\"building columns\";}}s:20:\"fas fa-building-flag\";a:2:{s:5:\"label\";s:13:\"Building Flag\";s:6:\"search\";a:9:{i:0;s:5:\" city\";i:1;s:8:\"building\";i:2;s:8:\"diplomat\";i:3;s:7:\"embassy\";i:4;s:4:\"flag\";i:5;s:12:\"headquarters\";i:6;s:14:\"united nations\";i:7;s:13:\"building-flag\";i:8;s:13:\"building flag\";}}s:20:\"fas fa-building-lock\";a:2:{s:5:\"label\";s:13:\"Building Lock\";s:6:\"search\";a:11:{i:0;s:8:\"building\";i:1;s:4:\"city\";i:2;s:6:\"closed\";i:3;s:4:\"lock\";i:4;s:8:\"lockdown\";i:5;s:7:\"padlock\";i:6;s:7:\"privacy\";i:7;s:10:\"quarantine\";i:8;s:6:\"secure\";i:9;s:13:\"building-lock\";i:10;s:13:\"building lock\";}}s:19:\"fas fa-building-ngo\";a:2:{s:5:\"label\";s:12:\"Building Ngo\";s:6:\"search\";a:6:{i:0;s:5:\" city\";i:1;s:8:\"building\";i:2;s:29:\"non governmental organization\";i:3;s:6:\"office\";i:4;s:12:\"building-ngo\";i:5;s:12:\"building ngo\";}}s:22:\"fas fa-building-shield\";a:2:{s:5:\"label\";s:15:\"Building Shield\";s:6:\"search\";a:7:{i:0;s:8:\"building\";i:1;s:4:\"city\";i:2;s:6:\"police\";i:3;s:7:\"protect\";i:4;s:6:\"safety\";i:5;s:15:\"building-shield\";i:6;s:15:\"building shield\";}}s:18:\"fas fa-building-un\";a:2:{s:5:\"label\";s:11:\"Building Un\";s:6:\"search\";a:6:{i:0;s:8:\"building\";i:1;s:4:\"city\";i:2;s:6:\"office\";i:3;s:14:\"united nations\";i:4;s:11:\"building-un\";i:5;s:11:\"building un\";}}s:20:\"fas fa-building-user\";a:2:{s:5:\"label\";s:13:\"Building User\";s:6:\"search\";a:7:{i:0;s:9:\"apartment\";i:1;s:8:\"building\";i:2;s:4:\"city\";i:3;s:8:\"employee\";i:4;s:3:\"uer\";i:5;s:13:\"building-user\";i:6;s:13:\"building user\";}}s:21:\"fas fa-building-wheat\";a:2:{s:5:\"label\";s:14:\"Building Wheat\";s:6:\"search\";a:6:{i:0;s:11:\"agriculture\";i:1;s:8:\"building\";i:2;s:4:\"city\";i:3;s:4:\"usda\";i:4;s:14:\"building-wheat\";i:5;s:14:\"building wheat\";}}s:15:\"fas fa-bullhorn\";a:2:{s:5:\"label\";s:8:\"Bullhorn\";s:6:\"search\";a:11:{i:0;s:8:\"Bullhorn\";i:1;s:12:\"announcement\";i:2;s:9:\"broadcast\";i:3;s:4:\"loud\";i:4;s:6:\"louder\";i:5;s:11:\"loudspeaker\";i:6;s:9:\"megaphone\";i:7;s:14:\"public address\";i:8;s:7:\"request\";i:9;s:5:\"share\";i:10;s:8:\"bullhorn\";}}s:15:\"fas fa-bullseye\";a:2:{s:5:\"label\";s:8:\"Bullseye\";s:6:\"search\";a:6:{i:0;s:7:\"archery\";i:1;s:4:\"goal\";i:2;s:9:\"objective\";i:3;s:8:\"strategy\";i:4;s:6:\"target\";i:5;s:8:\"bullseye\";}}s:13:\"fas fa-burger\";a:2:{s:5:\"label\";s:6:\"Burger\";s:6:\"search\";a:10:{i:0;s:5:\"bacon\";i:1;s:4:\"beef\";i:2;s:6:\"burger\";i:3;s:11:\"burger king\";i:4;s:12:\"cheeseburger\";i:5;s:9:\"fast food\";i:6;s:5:\"grill\";i:7;s:11:\"ground beef\";i:8;s:9:\"mcdonalds\";i:9;s:8:\"sandwich\";}}s:23:\"fab fa-buromobelexperte\";a:2:{s:5:\"label\";s:34:\"Büromöbel-Experte GmbH & Co. KG.\";s:6:\"search\";a:2:{i:0;s:16:\"buromobelexperte\";i:1;s:34:\"büromöbel-experte gmbh & co. kg.\";}}s:12:\"fas fa-burst\";a:2:{s:5:\"label\";s:5:\"Burst\";s:6:\"search\";a:4:{i:0;s:4:\"boom\";i:1;s:5:\"crash\";i:2;s:9:\"explosion\";i:3;s:5:\"burst\";}}s:10:\"fas fa-bus\";a:2:{s:5:\"label\";s:3:\"Bus\";s:6:\"search\";a:7:{i:0;s:3:\"bus\";i:1;s:8:\"oncoming\";i:2;s:12:\"oncoming bus\";i:3;s:21:\"public transportation\";i:4;s:14:\"transportation\";i:5;s:6:\"travel\";i:6;s:7:\"vehicle\";}}s:17:\"fas fa-bus-simple\";a:2:{s:5:\"label\";s:10:\"Bus Simple\";s:6:\"search\";a:7:{i:0;s:3:\"mta\";i:1;s:21:\"public transportation\";i:2;s:14:\"transportation\";i:3;s:6:\"travel\";i:4;s:7:\"vehicle\";i:5;s:10:\"bus-simple\";i:6;s:10:\"bus simple\";}}s:20:\"fas fa-business-time\";a:2:{s:5:\"label\";s:13:\"Business Time\";s:6:\"search\";a:10:{i:0;s:5:\"alarm\";i:1;s:9:\"briefcase\";i:2;s:14:\"business socks\";i:3;s:5:\"clock\";i:4;s:23:\"flight of the conchords\";i:5;s:9:\"portfolio\";i:6;s:8:\"reminder\";i:7;s:9:\"wednesday\";i:8;s:13:\"business-time\";i:9;s:13:\"business time\";}}s:18:\"fab fa-buy-n-large\";a:2:{s:5:\"label\";s:11:\"Buy n Large\";s:6:\"search\";a:2:{i:0;s:11:\"buy-n-large\";i:1;s:11:\"buy n large\";}}s:17:\"fab fa-buysellads\";a:2:{s:5:\"label\";s:10:\"BuySellAds\";s:6:\"search\";a:1:{i:0;s:10:\"buysellads\";}}s:8:\"fas fa-c\";a:2:{s:5:\"label\";s:1:\"C\";s:6:\"search\";a:4:{i:0;s:22:\"Latin Capital Letter C\";i:1;s:20:\"Latin Small Letter C\";i:2;s:6:\"letter\";i:3;s:1:\"c\";}}s:16:\"fas fa-cable-car\";a:2:{s:5:\"label\";s:9:\"Cable Car\";s:6:\"search\";a:11:{i:0;s:14:\"aerial tramway\";i:1;s:5:\"cable\";i:2;s:7:\"gondola\";i:3;s:4:\"lift\";i:4;s:8:\"mountain\";i:5;s:17:\"mountain cableway\";i:6;s:4:\"tram\";i:7;s:7:\"tramway\";i:8;s:7:\"trolley\";i:9;s:9:\"cable-car\";i:10;s:9:\"cable car\";}}s:19:\"fas fa-cake-candles\";a:2:{s:5:\"label\";s:12:\"Cake Candles\";s:6:\"search\";a:15:{i:0;s:11:\"anniversary\";i:1;s:6:\"bakery\";i:2;s:8:\"birthday\";i:3;s:13:\"birthday cake\";i:4;s:4:\"cake\";i:5;s:7:\"candles\";i:6;s:11:\"celebration\";i:7;s:7:\"dessert\";i:8;s:8:\"frosting\";i:9;s:7:\"holiday\";i:10;s:5:\"party\";i:11;s:6:\"pastry\";i:12;s:5:\"sweet\";i:13;s:12:\"cake-candles\";i:14;s:12:\"cake candles\";}}s:17:\"fas fa-calculator\";a:2:{s:5:\"label\";s:10:\"Calculator\";s:6:\"search\";a:9:{i:0;s:17:\"Pocket Calculator\";i:1;s:6:\"abacus\";i:2;s:8:\"addition\";i:3;s:10:\"arithmetic\";i:4;s:8:\"counting\";i:5;s:4:\"math\";i:6;s:14:\"multiplication\";i:7;s:11:\"subtraction\";i:8;s:10:\"calculator\";}}s:15:\"fas fa-calendar\";a:2:{s:5:\"label\";s:16:\"Calendar (solid)\";s:6:\"search\";a:11:{i:0;s:8:\"calendar\";i:1;s:10:\"calendar-o\";i:2;s:4:\"date\";i:3;s:3:\"day\";i:4;s:5:\"event\";i:5;s:5:\"month\";i:6;s:8:\"schedule\";i:7;s:17:\"tear-off calendar\";i:8;s:4:\"time\";i:9;s:4:\"when\";i:10;s:4:\"year\";}}s:15:\"far fa-calendar\";a:2:{s:5:\"label\";s:18:\"Calendar (regular)\";s:6:\"search\";a:11:{i:0;s:8:\"calendar\";i:1;s:10:\"calendar-o\";i:2;s:4:\"date\";i:3;s:3:\"day\";i:4;s:5:\"event\";i:5;s:5:\"month\";i:6;s:8:\"schedule\";i:7;s:17:\"tear-off calendar\";i:8;s:4:\"time\";i:9;s:4:\"when\";i:10;s:4:\"year\";}}s:21:\"fas fa-calendar-check\";a:2:{s:5:\"label\";s:22:\"Calendar Check (solid)\";s:6:\"search\";a:25:{i:0;s:6:\"accept\";i:1;s:5:\"agree\";i:2;s:11:\"appointment\";i:3;s:7:\"confirm\";i:4;s:7:\"correct\";i:5;s:4:\"date\";i:6;s:3:\"day\";i:7;s:4:\"done\";i:8;s:6:\"enable\";i:9;s:5:\"event\";i:10;s:5:\"month\";i:11;s:2:\"ok\";i:12;s:8:\"schedule\";i:13;s:6:\"select\";i:14;s:7:\"success\";i:15;s:4:\"tick\";i:16;s:4:\"time\";i:17;s:4:\"todo\";i:18;s:8:\"validate\";i:19;s:8:\"warranty\";i:20;s:4:\"when\";i:21;s:7:\"working\";i:22;s:4:\"year\";i:23;s:14:\"calendar-check\";i:24;s:14:\"calendar check\";}}s:21:\"far fa-calendar-check\";a:2:{s:5:\"label\";s:24:\"Calendar Check (regular)\";s:6:\"search\";a:25:{i:0;s:6:\"accept\";i:1;s:5:\"agree\";i:2;s:11:\"appointment\";i:3;s:7:\"confirm\";i:4;s:7:\"correct\";i:5;s:4:\"date\";i:6;s:3:\"day\";i:7;s:4:\"done\";i:8;s:6:\"enable\";i:9;s:5:\"event\";i:10;s:5:\"month\";i:11;s:2:\"ok\";i:12;s:8:\"schedule\";i:13;s:6:\"select\";i:14;s:7:\"success\";i:15;s:4:\"tick\";i:16;s:4:\"time\";i:17;s:4:\"todo\";i:18;s:8:\"validate\";i:19;s:8:\"warranty\";i:20;s:4:\"when\";i:21;s:7:\"working\";i:22;s:4:\"year\";i:23;s:14:\"calendar-check\";i:24;s:14:\"calendar check\";}}s:19:\"fas fa-calendar-day\";a:2:{s:5:\"label\";s:12:\"Calendar Day\";s:6:\"search\";a:14:{i:0;s:4:\"date\";i:1;s:3:\"day\";i:2;s:6:\"detail\";i:3;s:5:\"event\";i:4;s:5:\"focus\";i:5;s:5:\"month\";i:6;s:8:\"schedule\";i:7;s:10:\"single day\";i:8;s:4:\"time\";i:9;s:5:\"today\";i:10;s:4:\"when\";i:11;s:4:\"year\";i:12;s:12:\"calendar-day\";i:13;s:12:\"calendar day\";}}s:20:\"fas fa-calendar-days\";a:2:{s:5:\"label\";s:21:\"Calendar Days (solid)\";s:6:\"search\";a:11:{i:0;s:8:\"calendar\";i:1;s:4:\"date\";i:2;s:3:\"day\";i:3;s:5:\"event\";i:4;s:5:\"month\";i:5;s:8:\"schedule\";i:6;s:4:\"time\";i:7;s:4:\"when\";i:8;s:4:\"year\";i:9;s:13:\"calendar-days\";i:10;s:13:\"calendar days\";}}s:20:\"far fa-calendar-days\";a:2:{s:5:\"label\";s:23:\"Calendar Days (regular)\";s:6:\"search\";a:11:{i:0;s:8:\"calendar\";i:1;s:4:\"date\";i:2;s:3:\"day\";i:3;s:5:\"event\";i:4;s:5:\"month\";i:5;s:8:\"schedule\";i:6;s:4:\"time\";i:7;s:4:\"when\";i:8;s:4:\"year\";i:9;s:13:\"calendar-days\";i:10;s:13:\"calendar days\";}}s:21:\"fas fa-calendar-minus\";a:2:{s:5:\"label\";s:22:\"Calendar Minus (solid)\";s:6:\"search\";a:14:{i:0;s:8:\"calendar\";i:1;s:4:\"date\";i:2;s:3:\"day\";i:3;s:6:\"delete\";i:4;s:5:\"event\";i:5;s:5:\"month\";i:6;s:8:\"negative\";i:7;s:6:\"remove\";i:8;s:8:\"schedule\";i:9;s:4:\"time\";i:10;s:4:\"when\";i:11;s:4:\"year\";i:12;s:14:\"calendar-minus\";i:13;s:14:\"calendar minus\";}}s:21:\"far fa-calendar-minus\";a:2:{s:5:\"label\";s:24:\"Calendar Minus (regular)\";s:6:\"search\";a:14:{i:0;s:8:\"calendar\";i:1;s:4:\"date\";i:2;s:3:\"day\";i:3;s:6:\"delete\";i:4;s:5:\"event\";i:5;s:5:\"month\";i:6;s:8:\"negative\";i:7;s:6:\"remove\";i:8;s:8:\"schedule\";i:9;s:4:\"time\";i:10;s:4:\"when\";i:11;s:4:\"year\";i:12;s:14:\"calendar-minus\";i:13;s:14:\"calendar minus\";}}s:20:\"fas fa-calendar-plus\";a:2:{s:5:\"label\";s:21:\"Calendar Plus (solid)\";s:6:\"search\";a:15:{i:0;s:3:\"add\";i:1;s:8:\"calendar\";i:2;s:6:\"create\";i:3;s:4:\"date\";i:4;s:3:\"day\";i:5;s:5:\"event\";i:6;s:5:\"month\";i:7;s:3:\"new\";i:8;s:8:\"positive\";i:9;s:8:\"schedule\";i:10;s:4:\"time\";i:11;s:4:\"when\";i:12;s:4:\"year\";i:13;s:13:\"calendar-plus\";i:14;s:13:\"calendar plus\";}}s:20:\"far fa-calendar-plus\";a:2:{s:5:\"label\";s:23:\"Calendar Plus (regular)\";s:6:\"search\";a:15:{i:0;s:3:\"add\";i:1;s:8:\"calendar\";i:2;s:6:\"create\";i:3;s:4:\"date\";i:4;s:3:\"day\";i:5;s:5:\"event\";i:6;s:5:\"month\";i:7;s:3:\"new\";i:8;s:8:\"positive\";i:9;s:8:\"schedule\";i:10;s:4:\"time\";i:11;s:4:\"when\";i:12;s:4:\"year\";i:13;s:13:\"calendar-plus\";i:14;s:13:\"calendar plus\";}}s:20:\"fas fa-calendar-week\";a:2:{s:5:\"label\";s:13:\"Calendar Week\";s:6:\"search\";a:14:{i:0;s:4:\"date\";i:1;s:3:\"day\";i:2;s:6:\"detail\";i:3;s:5:\"event\";i:4;s:5:\"focus\";i:5;s:5:\"month\";i:6;s:8:\"schedule\";i:7;s:11:\"single week\";i:8;s:4:\"time\";i:9;s:5:\"today\";i:10;s:4:\"when\";i:11;s:4:\"year\";i:12;s:13:\"calendar-week\";i:13;s:13:\"calendar week\";}}s:21:\"fas fa-calendar-xmark\";a:2:{s:5:\"label\";s:22:\"Calendar Xmark (solid)\";s:6:\"search\";a:16:{i:0;s:7:\"archive\";i:1;s:8:\"calendar\";i:2;s:4:\"date\";i:3;s:3:\"day\";i:4;s:6:\"delete\";i:5;s:5:\"event\";i:6;s:5:\"month\";i:7;s:6:\"remove\";i:8;s:8:\"schedule\";i:9;s:4:\"time\";i:10;s:7:\"uncheck\";i:11;s:4:\"when\";i:12;s:1:\"x\";i:13;s:4:\"year\";i:14;s:14:\"calendar-xmark\";i:15;s:14:\"calendar xmark\";}}s:21:\"far fa-calendar-xmark\";a:2:{s:5:\"label\";s:24:\"Calendar Xmark (regular)\";s:6:\"search\";a:16:{i:0;s:7:\"archive\";i:1;s:8:\"calendar\";i:2;s:4:\"date\";i:3;s:3:\"day\";i:4;s:6:\"delete\";i:5;s:5:\"event\";i:6;s:5:\"month\";i:7;s:6:\"remove\";i:8;s:8:\"schedule\";i:9;s:4:\"time\";i:10;s:7:\"uncheck\";i:11;s:4:\"when\";i:12;s:1:\"x\";i:13;s:4:\"year\";i:14;s:14:\"calendar-xmark\";i:15;s:14:\"calendar xmark\";}}s:13:\"fas fa-camera\";a:2:{s:5:\"label\";s:6:\"Camera\";s:6:\"search\";a:9:{i:0;s:5:\"image\";i:1;s:3:\"img\";i:2;s:4:\"lens\";i:3;s:5:\"photo\";i:4;s:7:\"picture\";i:5;s:6:\"record\";i:6;s:7:\"shutter\";i:7;s:5:\"video\";i:8;s:6:\"camera\";}}s:19:\"fas fa-camera-retro\";a:2:{s:5:\"label\";s:12:\"Camera Retro\";s:6:\"search\";a:11:{i:0;s:6:\"camera\";i:1;s:5:\"image\";i:2;s:3:\"img\";i:3;s:4:\"lens\";i:4;s:5:\"photo\";i:5;s:7:\"picture\";i:6;s:6:\"record\";i:7;s:7:\"shutter\";i:8;s:5:\"video\";i:9;s:12:\"camera-retro\";i:10;s:12:\"camera retro\";}}s:20:\"fas fa-camera-rotate\";a:2:{s:5:\"label\";s:13:\"Camera Rotate\";s:6:\"search\";a:7:{i:0;s:4:\"flip\";i:1;s:12:\"front-facing\";i:2;s:3:\"img\";i:3;s:5:\"photo\";i:4;s:6:\"selfie\";i:5;s:13:\"camera-rotate\";i:6;s:13:\"camera rotate\";}}s:17:\"fas fa-campground\";a:2:{s:5:\"label\";s:10:\"Campground\";s:6:\"search\";a:7:{i:0;s:7:\"camping\";i:1;s:4:\"fall\";i:2;s:8:\"outdoors\";i:3;s:6:\"teepee\";i:4;s:4:\"tent\";i:5;s:4:\"tipi\";i:6;s:10:\"campground\";}}s:26:\"fab fa-canadian-maple-leaf\";a:2:{s:5:\"label\";s:19:\"Canadian Maple Leaf\";s:6:\"search\";a:7:{i:0;s:6:\"canada\";i:1;s:4:\"flag\";i:2;s:5:\"flora\";i:3;s:6:\"nature\";i:4;s:5:\"plant\";i:5;s:19:\"canadian-maple-leaf\";i:6;s:19:\"canadian maple leaf\";}}s:17:\"fas fa-candy-cane\";a:2:{s:5:\"label\";s:10:\"Candy Cane\";s:6:\"search\";a:9:{i:0;s:5:\"candy\";i:1;s:9:\"christmas\";i:2;s:7:\"holiday\";i:3;s:4:\"mint\";i:4;s:10:\"peppermint\";i:5;s:7:\"striped\";i:6;s:4:\"xmas\";i:7;s:10:\"candy-cane\";i:8;s:10:\"candy cane\";}}s:15:\"fas fa-cannabis\";a:2:{s:5:\"label\";s:8:\"Cannabis\";s:6:\"search\";a:15:{i:0;s:3:\"bud\";i:1;s:7:\"chronic\";i:2;s:5:\"drugs\";i:3;s:6:\"endica\";i:4;s:4:\"endo\";i:5;s:5:\"ganja\";i:6;s:9:\"marijuana\";i:7;s:9:\"mary jane\";i:8;s:3:\"pot\";i:9;s:6:\"reefer\";i:10;s:6:\"sativa\";i:11;s:6:\"spliff\";i:12;s:4:\"weed\";i:13;s:14:\"whacky-tabacky\";i:14;s:8:\"cannabis\";}}s:15:\"fas fa-capsules\";a:2:{s:5:\"label\";s:8:\"Capsules\";s:6:\"search\";a:5:{i:0;s:5:\"drugs\";i:1;s:8:\"medicine\";i:2;s:5:\"pills\";i:3;s:12:\"prescription\";i:4;s:8:\"capsules\";}}s:10:\"fas fa-car\";a:2:{s:5:\"label\";s:3:\"Car\";s:6:\"search\";a:9:{i:0;s:4:\"auto\";i:1;s:10:\"automobile\";i:2;s:3:\"car\";i:3;s:8:\"oncoming\";i:4;s:19:\"oncoming automobile\";i:5;s:5:\"sedan\";i:6;s:14:\"transportation\";i:7;s:6:\"travel\";i:8;s:7:\"vehicle\";}}s:18:\"fas fa-car-battery\";a:2:{s:5:\"label\";s:11:\"Car Battery\";s:6:\"search\";a:6:{i:0;s:4:\"auto\";i:1;s:8:\"electric\";i:2;s:8:\"mechanic\";i:3;s:5:\"power\";i:4;s:11:\"car-battery\";i:5;s:11:\"car battery\";}}s:16:\"fas fa-car-burst\";a:2:{s:5:\"label\";s:9:\"Car Burst\";s:6:\"search\";a:10:{i:0;s:8:\"accident\";i:1;s:4:\"auto\";i:2;s:10:\"automobile\";i:3;s:9:\"insurance\";i:4;s:5:\"sedan\";i:5;s:14:\"transportation\";i:6;s:7:\"vehicle\";i:7;s:5:\"wreck\";i:8;s:9:\"car-burst\";i:9;s:9:\"car burst\";}}s:13:\"fas fa-car-on\";a:2:{s:5:\"label\";s:6:\"Car On\";s:6:\"search\";a:6:{i:0;s:5:\"alarm\";i:1;s:3:\"car\";i:2;s:7:\"carjack\";i:3;s:7:\"warning\";i:4;s:6:\"car-on\";i:5;s:6:\"car on\";}}s:15:\"fas fa-car-rear\";a:2:{s:5:\"label\";s:8:\"Car Rear\";s:6:\"search\";a:8:{i:0;s:4:\"auto\";i:1;s:10:\"automobile\";i:2;s:5:\"sedan\";i:3;s:14:\"transportation\";i:4;s:6:\"travel\";i:5;s:7:\"vehicle\";i:6;s:8:\"car-rear\";i:7;s:8:\"car rear\";}}s:15:\"fas fa-car-side\";a:2:{s:5:\"label\";s:8:\"Car Side\";s:6:\"search\";a:9:{i:0;s:4:\"auto\";i:1;s:10:\"automobile\";i:2;s:3:\"car\";i:3;s:5:\"sedan\";i:4;s:14:\"transportation\";i:5;s:6:\"travel\";i:6;s:7:\"vehicle\";i:7;s:8:\"car-side\";i:8;s:8:\"car side\";}}s:17:\"fas fa-car-tunnel\";a:2:{s:5:\"label\";s:10:\"Car Tunnel\";s:6:\"search\";a:4:{i:0;s:4:\"road\";i:1;s:6:\"tunnel\";i:2;s:10:\"car-tunnel\";i:3;s:10:\"car tunnel\";}}s:14:\"fas fa-caravan\";a:2:{s:5:\"label\";s:7:\"Caravan\";s:6:\"search\";a:6:{i:0;s:6:\"camper\";i:1;s:10:\"motor home\";i:2;s:2:\"rv\";i:3;s:7:\"trailer\";i:4;s:6:\"travel\";i:5;s:7:\"caravan\";}}s:17:\"fas fa-caret-down\";a:2:{s:5:\"label\";s:10:\"Caret Down\";s:6:\"search\";a:8:{i:0;s:5:\"arrow\";i:1;s:8:\"dropdown\";i:2;s:6:\"expand\";i:3;s:4:\"menu\";i:4;s:4:\"more\";i:5;s:8:\"triangle\";i:6;s:10:\"caret-down\";i:7;s:10:\"caret down\";}}s:17:\"fas fa-caret-left\";a:2:{s:5:\"label\";s:10:\"Caret Left\";s:6:\"search\";a:6:{i:0;s:5:\"arrow\";i:1;s:4:\"back\";i:2;s:8:\"previous\";i:3;s:8:\"triangle\";i:4;s:10:\"caret-left\";i:5;s:10:\"caret left\";}}s:18:\"fas fa-caret-right\";a:2:{s:5:\"label\";s:11:\"Caret Right\";s:6:\"search\";a:6:{i:0;s:5:\"arrow\";i:1;s:7:\"forward\";i:2;s:4:\"next\";i:3;s:8:\"triangle\";i:4;s:11:\"caret-right\";i:5;s:11:\"caret right\";}}s:15:\"fas fa-caret-up\";a:2:{s:5:\"label\";s:8:\"Caret Up\";s:6:\"search\";a:6:{i:0;s:5:\"arrow\";i:1;s:8:\"collapse\";i:2;s:8:\"triangle\";i:3;s:7:\"upgrade\";i:4;s:8:\"caret-up\";i:5;s:8:\"caret up\";}}s:13:\"fas fa-carrot\";a:2:{s:5:\"label\";s:6:\"Carrot\";s:6:\"search\";a:6:{i:0;s:10:\"bugs bunny\";i:1;s:6:\"carrot\";i:2;s:4:\"food\";i:3;s:6:\"orange\";i:4;s:5:\"vegan\";i:5;s:9:\"vegetable\";}}s:22:\"fas fa-cart-arrow-down\";a:2:{s:5:\"label\";s:15:\"Cart Arrow Down\";s:6:\"search\";a:6:{i:0;s:8:\"download\";i:1;s:6:\"insert\";i:2;s:4:\"save\";i:3;s:8:\"shopping\";i:4;s:15:\"cart-arrow-down\";i:5;s:15:\"cart arrow down\";}}s:19:\"fas fa-cart-flatbed\";a:2:{s:5:\"label\";s:12:\"Cart Flatbed\";s:6:\"search\";a:6:{i:0;s:5:\"carry\";i:1;s:9:\"inventory\";i:2;s:8:\"shipping\";i:3;s:9:\"transport\";i:4;s:12:\"cart-flatbed\";i:5;s:12:\"cart flatbed\";}}s:28:\"fas fa-cart-flatbed-suitcase\";a:2:{s:5:\"label\";s:21:\"Cart Flatbed Suitcase\";s:6:\"search\";a:7:{i:0;s:7:\"airport\";i:1;s:3:\"bag\";i:2;s:7:\"baggage\";i:3;s:8:\"suitcase\";i:4;s:6:\"travel\";i:5;s:21:\"cart-flatbed-suitcase\";i:6;s:21:\"cart flatbed suitcase\";}}s:16:\"fas fa-cart-plus\";a:2:{s:5:\"label\";s:9:\"Cart Plus\";s:6:\"search\";a:7:{i:0;s:3:\"add\";i:1;s:6:\"create\";i:2;s:3:\"new\";i:3;s:8:\"positive\";i:4;s:8:\"shopping\";i:5;s:9:\"cart-plus\";i:6;s:9:\"cart plus\";}}s:20:\"fas fa-cart-shopping\";a:2:{s:5:\"label\";s:13:\"Cart Shopping\";s:6:\"search\";a:11:{i:0;s:3:\"buy\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";i:3;s:7:\"grocery\";i:4;s:7:\"payment\";i:5;s:8:\"purchase\";i:6;s:8:\"shopping\";i:7;s:13:\"shopping cart\";i:8;s:7:\"trolley\";i:9;s:13:\"cart-shopping\";i:10;s:13:\"cart shopping\";}}s:20:\"fas fa-cash-register\";a:2:{s:5:\"label\";s:13:\"Cash Register\";s:6:\"search\";a:13:{i:0;s:3:\"buy\";i:1;s:9:\"cha-ching\";i:2;s:6:\"change\";i:3;s:8:\"checkout\";i:4;s:8:\"commerce\";i:5;s:10:\"leaerboard\";i:6;s:7:\"machine\";i:7;s:3:\"pay\";i:8;s:7:\"payment\";i:9;s:8:\"purchase\";i:10;s:5:\"store\";i:11;s:13:\"cash-register\";i:12;s:13:\"cash register\";}}s:10:\"fas fa-cat\";a:2:{s:5:\"label\";s:3:\"Cat\";s:6:\"search\";a:8:{i:0;s:3:\"cat\";i:1;s:6:\"feline\";i:2;s:9:\"halloween\";i:3;s:7:\"holiday\";i:4;s:6:\"kitten\";i:5;s:5:\"kitty\";i:6;s:4:\"meow\";i:7;s:3:\"pet\";}}s:20:\"fab fa-cc-amazon-pay\";a:2:{s:5:\"label\";s:22:\"Amazon Pay Credit Card\";s:6:\"search\";a:2:{i:0;s:13:\"cc-amazon-pay\";i:1;s:22:\"amazon pay credit card\";}}s:14:\"fab fa-cc-amex\";a:2:{s:5:\"label\";s:7:\"Cc Amex\";s:6:\"search\";a:3:{i:0;s:4:\"amex\";i:1;s:7:\"cc-amex\";i:2;s:7:\"cc amex\";}}s:19:\"fab fa-cc-apple-pay\";a:2:{s:5:\"label\";s:21:\"Apple Pay Credit Card\";s:6:\"search\";a:2:{i:0;s:12:\"cc-apple-pay\";i:1;s:21:\"apple pay credit card\";}}s:21:\"fab fa-cc-diners-club\";a:2:{s:5:\"label\";s:24:\"Diner\'s Club Credit Card\";s:6:\"search\";a:2:{i:0;s:14:\"cc-diners-club\";i:1;s:24:\"diner\'s club credit card\";}}s:18:\"fab fa-cc-discover\";a:2:{s:5:\"label\";s:20:\"Discover Credit Card\";s:6:\"search\";a:2:{i:0;s:11:\"cc-discover\";i:1;s:20:\"discover credit card\";}}s:13:\"fab fa-cc-jcb\";a:2:{s:5:\"label\";s:15:\"JCB Credit Card\";s:6:\"search\";a:2:{i:0;s:6:\"cc-jcb\";i:1;s:15:\"jcb credit card\";}}s:20:\"fab fa-cc-mastercard\";a:2:{s:5:\"label\";s:22:\"MasterCard Credit Card\";s:6:\"search\";a:2:{i:0;s:13:\"cc-mastercard\";i:1;s:22:\"mastercard credit card\";}}s:16:\"fab fa-cc-paypal\";a:2:{s:5:\"label\";s:18:\"Paypal Credit Card\";s:6:\"search\";a:2:{i:0;s:9:\"cc-paypal\";i:1;s:18:\"paypal credit card\";}}s:16:\"fab fa-cc-stripe\";a:2:{s:5:\"label\";s:18:\"Stripe Credit Card\";s:6:\"search\";a:2:{i:0;s:9:\"cc-stripe\";i:1;s:18:\"stripe credit card\";}}s:14:\"fab fa-cc-visa\";a:2:{s:5:\"label\";s:16:\"Visa Credit Card\";s:6:\"search\";a:2:{i:0;s:7:\"cc-visa\";i:1;s:16:\"visa credit card\";}}s:16:\"fas fa-cedi-sign\";a:2:{s:5:\"label\";s:9:\"Cedi Sign\";s:6:\"search\";a:4:{i:0;s:9:\"Cedi Sign\";i:1;s:8:\"currency\";i:2;s:9:\"cedi-sign\";i:3;s:9:\"cedi sign\";}}s:16:\"fas fa-cent-sign\";a:2:{s:5:\"label\";s:9:\"Cent Sign\";s:6:\"search\";a:4:{i:0;s:9:\"Cent Sign\";i:1;s:8:\"currency\";i:2;s:9:\"cent-sign\";i:3;s:9:\"cent sign\";}}s:17:\"fab fa-centercode\";a:2:{s:5:\"label\";s:10:\"Centercode\";s:6:\"search\";a:1:{i:0;s:10:\"centercode\";}}s:13:\"fab fa-centos\";a:2:{s:5:\"label\";s:6:\"Centos\";s:6:\"search\";a:4:{i:0;s:5:\"linux\";i:1;s:16:\"operating system\";i:2;s:2:\"os\";i:3;s:6:\"centos\";}}s:18:\"fas fa-certificate\";a:2:{s:5:\"label\";s:11:\"Certificate\";s:6:\"search\";a:5:{i:0;s:5:\"badge\";i:1;s:9:\"guarantee\";i:2;s:4:\"star\";i:3;s:8:\"verified\";i:4;s:11:\"certificate\";}}s:12:\"fas fa-chair\";a:2:{s:5:\"label\";s:5:\"Chair\";s:6:\"search\";a:4:{i:0;s:5:\"chair\";i:1;s:9:\"furniture\";i:2;s:4:\"seat\";i:3;s:3:\"sit\";}}s:17:\"fas fa-chalkboard\";a:2:{s:5:\"label\";s:10:\"Chalkboard\";s:6:\"search\";a:7:{i:0;s:10:\"blackboard\";i:1;s:8:\"learning\";i:2;s:6:\"school\";i:3;s:8:\"teaching\";i:4;s:10:\"whiteboard\";i:5;s:7:\"writing\";i:6;s:10:\"chalkboard\";}}s:22:\"fas fa-chalkboard-user\";a:2:{s:5:\"label\";s:15:\"Chalkboard User\";s:6:\"search\";a:10:{i:0;s:10:\"blackboard\";i:1;s:10:\"instructor\";i:2;s:8:\"learning\";i:3;s:9:\"professor\";i:4;s:6:\"school\";i:5;s:3:\"uer\";i:6;s:10:\"whiteboard\";i:7;s:7:\"writing\";i:8;s:15:\"chalkboard-user\";i:9;s:15:\"chalkboard user\";}}s:24:\"fas fa-champagne-glasses\";a:2:{s:5:\"label\";s:17:\"Champagne Glasses\";s:6:\"search\";a:16:{i:0;s:7:\"alcohol\";i:1;s:3:\"bar\";i:2;s:8:\"beverage\";i:3;s:9:\"celebrate\";i:4;s:11:\"celebration\";i:5;s:9:\"champagne\";i:6;s:5:\"clink\";i:7;s:16:\"clinking glasses\";i:8;s:5:\"drink\";i:9;s:5:\"glass\";i:10;s:7:\"holiday\";i:11;s:14:\"new year\'s eve\";i:12;s:5:\"party\";i:13;s:5:\"toast\";i:14;s:17:\"champagne-glasses\";i:15;s:17:\"champagne glasses\";}}s:23:\"fas fa-charging-station\";a:2:{s:5:\"label\";s:16:\"Charging Station\";s:6:\"search\";a:6:{i:0;s:8:\"electric\";i:1;s:2:\"ev\";i:2;s:5:\"tesla\";i:3;s:7:\"vehicle\";i:4;s:16:\"charging-station\";i:5;s:16:\"charging station\";}}s:17:\"fas fa-chart-area\";a:2:{s:5:\"label\";s:10:\"Chart Area\";s:6:\"search\";a:9:{i:0;s:9:\"analytics\";i:1;s:4:\"area\";i:2;s:5:\"chart\";i:3;s:5:\"graph\";i:4;s:11:\"performance\";i:5;s:7:\"revenue\";i:6;s:10:\"statistics\";i:7;s:10:\"chart-area\";i:8;s:10:\"chart area\";}}s:16:\"fas fa-chart-bar\";a:2:{s:5:\"label\";s:17:\"Chart Bar (solid)\";s:6:\"search\";a:8:{i:0;s:9:\"analytics\";i:1;s:3:\"bar\";i:2;s:5:\"chart\";i:3;s:5:\"graph\";i:4;s:11:\"performance\";i:5;s:10:\"statistics\";i:6;s:9:\"chart-bar\";i:7;s:9:\"chart bar\";}}s:16:\"far fa-chart-bar\";a:2:{s:5:\"label\";s:19:\"Chart Bar (regular)\";s:6:\"search\";a:8:{i:0;s:9:\"analytics\";i:1;s:3:\"bar\";i:2;s:5:\"chart\";i:3;s:5:\"graph\";i:4;s:11:\"performance\";i:5;s:10:\"statistics\";i:6;s:9:\"chart-bar\";i:7;s:9:\"chart bar\";}}s:19:\"fas fa-chart-column\";a:2:{s:5:\"label\";s:12:\"Chart Column\";s:6:\"search\";a:11:{i:0;s:3:\"bar\";i:1;s:9:\"bar chart\";i:2;s:5:\"chart\";i:3;s:5:\"graph\";i:4;s:11:\"performance\";i:5;s:7:\"revenue\";i:6;s:10:\"statistics\";i:7;s:5:\"track\";i:8;s:5:\"trend\";i:9;s:12:\"chart-column\";i:10;s:12:\"chart column\";}}s:18:\"fas fa-chart-gantt\";a:2:{s:5:\"label\";s:11:\"Chart Gantt\";s:6:\"search\";a:8:{i:0;s:5:\"chart\";i:1;s:5:\"graph\";i:2;s:11:\"performance\";i:3;s:10:\"statistics\";i:4;s:5:\"track\";i:5;s:5:\"trend\";i:6;s:11:\"chart-gantt\";i:7;s:11:\"chart gantt\";}}s:17:\"fas fa-chart-line\";a:2:{s:5:\"label\";s:10:\"Chart Line\";s:6:\"search\";a:13:{i:0;s:8:\"activity\";i:1;s:9:\"analytics\";i:2;s:5:\"chart\";i:3;s:9:\"dashboard\";i:4;s:4:\"gain\";i:5;s:5:\"graph\";i:6;s:8:\"increase\";i:7;s:4:\"line\";i:8;s:11:\"performance\";i:9;s:7:\"revenue\";i:10;s:10:\"statistics\";i:11;s:10:\"chart-line\";i:12;s:10:\"chart line\";}}s:16:\"fas fa-chart-pie\";a:2:{s:5:\"label\";s:9:\"Chart Pie\";s:6:\"search\";a:10:{i:0;s:9:\"analytics\";i:1;s:5:\"chart\";i:2;s:7:\"diagram\";i:3;s:5:\"graph\";i:4;s:11:\"performance\";i:5;s:3:\"pie\";i:6;s:7:\"revenue\";i:7;s:10:\"statistics\";i:8;s:9:\"chart-pie\";i:9;s:9:\"chart pie\";}}s:19:\"fas fa-chart-simple\";a:2:{s:5:\"label\";s:12:\"Chart Simple\";s:6:\"search\";a:12:{i:0;s:9:\"analytics\";i:1;s:3:\"bar\";i:2;s:5:\"chart\";i:3;s:6:\"column\";i:4;s:5:\"graph\";i:5;s:11:\"performance\";i:6;s:7:\"revenue\";i:7;s:3:\"row\";i:8;s:10:\"statistics\";i:9;s:5:\"trend\";i:10;s:12:\"chart-simple\";i:11;s:12:\"chart simple\";}}s:12:\"fas fa-check\";a:2:{s:5:\"label\";s:5:\"Check\";s:6:\"search\";a:25:{i:0;s:10:\"Check Mark\";i:1;s:6:\"accept\";i:2;s:5:\"agree\";i:3;s:5:\"check\";i:4;s:10:\"check mark\";i:5;s:9:\"checkmark\";i:6;s:7:\"confirm\";i:7;s:7:\"correct\";i:8;s:6:\"coupon\";i:9;s:4:\"done\";i:10;s:6:\"enable\";i:11;s:4:\"mark\";i:12;s:6:\"notice\";i:13;s:12:\"notification\";i:14;s:6:\"notify\";i:15;s:2:\"ok\";i:16;s:6:\"select\";i:17;s:7:\"success\";i:18;s:4:\"tick\";i:19;s:4:\"todo\";i:20;s:4:\"true\";i:21;s:8:\"validate\";i:22;s:7:\"working\";i:23;s:3:\"yes\";i:24;s:3:\"✓\";}}s:19:\"fas fa-check-double\";a:2:{s:5:\"label\";s:12:\"Check Double\";s:6:\"search\";a:21:{i:0;s:6:\"accept\";i:1;s:5:\"agree\";i:2;s:9:\"checkmark\";i:3;s:7:\"confirm\";i:4;s:7:\"correct\";i:5;s:6:\"coupon\";i:6;s:4:\"done\";i:7;s:6:\"enable\";i:8;s:6:\"notice\";i:9;s:12:\"notification\";i:10;s:6:\"notify\";i:11;s:2:\"ok\";i:12;s:6:\"select\";i:13;s:10:\"select all\";i:14;s:7:\"success\";i:15;s:4:\"tick\";i:16;s:4:\"todo\";i:17;s:8:\"validate\";i:18;s:7:\"working\";i:19;s:12:\"check-double\";i:20;s:12:\"check double\";}}s:20:\"fas fa-check-to-slot\";a:2:{s:5:\"label\";s:13:\"Check To Slot\";s:6:\"search\";a:12:{i:0;s:6:\"accept\";i:1;s:4:\"cast\";i:2;s:8:\"election\";i:3;s:6:\"enable\";i:4;s:8:\"politics\";i:5;s:8:\"positive\";i:6;s:8:\"validate\";i:7;s:6:\"voting\";i:8;s:7:\"working\";i:9;s:3:\"yes\";i:10;s:13:\"check-to-slot\";i:11;s:13:\"check to slot\";}}s:13:\"fas fa-cheese\";a:2:{s:5:\"label\";s:6:\"Cheese\";s:6:\"search\";a:9:{i:0;s:7:\"cheddar\";i:1;s:4:\"curd\";i:2;s:5:\"gouda\";i:3;s:4:\"melt\";i:4;s:8:\"parmesan\";i:5;s:8:\"sandwich\";i:6;s:5:\"swiss\";i:7;s:5:\"wedge\";i:8;s:6:\"cheese\";}}s:12:\"fas fa-chess\";a:2:{s:5:\"label\";s:5:\"Chess\";s:6:\"search\";a:9:{i:0;s:5:\"board\";i:1;s:6:\"castle\";i:2;s:9:\"checkmate\";i:3;s:4:\"game\";i:4;s:4:\"king\";i:5;s:4:\"rook\";i:6;s:8:\"strategy\";i:7;s:10:\"tournament\";i:8;s:5:\"chess\";}}s:19:\"fas fa-chess-bishop\";a:2:{s:5:\"label\";s:20:\"Chess Bishop (solid)\";s:6:\"search\";a:7:{i:0;s:18:\"Black Chess Bishop\";i:1;s:5:\"board\";i:2;s:9:\"checkmate\";i:3;s:4:\"game\";i:4;s:8:\"strategy\";i:5;s:12:\"chess-bishop\";i:6;s:12:\"chess bishop\";}}s:19:\"far fa-chess-bishop\";a:2:{s:5:\"label\";s:22:\"Chess Bishop (regular)\";s:6:\"search\";a:7:{i:0;s:18:\"Black Chess Bishop\";i:1;s:5:\"board\";i:2;s:9:\"checkmate\";i:3;s:4:\"game\";i:4;s:8:\"strategy\";i:5;s:12:\"chess-bishop\";i:6;s:12:\"chess bishop\";}}s:18:\"fas fa-chess-board\";a:2:{s:5:\"label\";s:11:\"Chess Board\";s:6:\"search\";a:6:{i:0;s:5:\"board\";i:1;s:9:\"checkmate\";i:2;s:4:\"game\";i:3;s:8:\"strategy\";i:4;s:11:\"chess-board\";i:5;s:11:\"chess board\";}}s:17:\"fas fa-chess-king\";a:2:{s:5:\"label\";s:18:\"Chess King (solid)\";s:6:\"search\";a:7:{i:0;s:16:\"Black Chess King\";i:1;s:5:\"board\";i:2;s:9:\"checkmate\";i:3;s:4:\"game\";i:4;s:8:\"strategy\";i:5;s:10:\"chess-king\";i:6;s:10:\"chess king\";}}s:17:\"far fa-chess-king\";a:2:{s:5:\"label\";s:20:\"Chess King (regular)\";s:6:\"search\";a:7:{i:0;s:16:\"Black Chess King\";i:1;s:5:\"board\";i:2;s:9:\"checkmate\";i:3;s:4:\"game\";i:4;s:8:\"strategy\";i:5;s:10:\"chess-king\";i:6;s:10:\"chess king\";}}s:19:\"fas fa-chess-knight\";a:2:{s:5:\"label\";s:20:\"Chess Knight (solid)\";s:6:\"search\";a:8:{i:0;s:18:\"Black Chess Knight\";i:1;s:5:\"board\";i:2;s:9:\"checkmate\";i:3;s:4:\"game\";i:4;s:5:\"horse\";i:5;s:8:\"strategy\";i:6;s:12:\"chess-knight\";i:7;s:12:\"chess knight\";}}s:19:\"far fa-chess-knight\";a:2:{s:5:\"label\";s:22:\"Chess Knight (regular)\";s:6:\"search\";a:8:{i:0;s:18:\"Black Chess Knight\";i:1;s:5:\"board\";i:2;s:9:\"checkmate\";i:3;s:4:\"game\";i:4;s:5:\"horse\";i:5;s:8:\"strategy\";i:6;s:12:\"chess-knight\";i:7;s:12:\"chess knight\";}}s:17:\"fas fa-chess-pawn\";a:2:{s:5:\"label\";s:18:\"Chess Pawn (solid)\";s:6:\"search\";a:9:{i:0;s:5:\"board\";i:1;s:9:\"checkmate\";i:2;s:5:\"chess\";i:3;s:10:\"chess pawn\";i:4;s:4:\"dupe\";i:5;s:10:\"expendable\";i:6;s:4:\"game\";i:7;s:8:\"strategy\";i:8;s:10:\"chess-pawn\";}}s:17:\"far fa-chess-pawn\";a:2:{s:5:\"label\";s:20:\"Chess Pawn (regular)\";s:6:\"search\";a:9:{i:0;s:5:\"board\";i:1;s:9:\"checkmate\";i:2;s:5:\"chess\";i:3;s:10:\"chess pawn\";i:4;s:4:\"dupe\";i:5;s:10:\"expendable\";i:6;s:4:\"game\";i:7;s:8:\"strategy\";i:8;s:10:\"chess-pawn\";}}s:18:\"fas fa-chess-queen\";a:2:{s:5:\"label\";s:19:\"Chess Queen (solid)\";s:6:\"search\";a:7:{i:0;s:17:\"Black Chess Queen\";i:1;s:5:\"board\";i:2;s:9:\"checkmate\";i:3;s:4:\"game\";i:4;s:8:\"strategy\";i:5;s:11:\"chess-queen\";i:6;s:11:\"chess queen\";}}s:18:\"far fa-chess-queen\";a:2:{s:5:\"label\";s:21:\"Chess Queen (regular)\";s:6:\"search\";a:7:{i:0;s:17:\"Black Chess Queen\";i:1;s:5:\"board\";i:2;s:9:\"checkmate\";i:3;s:4:\"game\";i:4;s:8:\"strategy\";i:5;s:11:\"chess-queen\";i:6;s:11:\"chess queen\";}}s:17:\"fas fa-chess-rook\";a:2:{s:5:\"label\";s:18:\"Chess Rook (solid)\";s:6:\"search\";a:8:{i:0;s:16:\"Black Chess Rook\";i:1;s:5:\"board\";i:2;s:6:\"castle\";i:3;s:9:\"checkmate\";i:4;s:4:\"game\";i:5;s:8:\"strategy\";i:6;s:10:\"chess-rook\";i:7;s:10:\"chess rook\";}}s:17:\"far fa-chess-rook\";a:2:{s:5:\"label\";s:20:\"Chess Rook (regular)\";s:6:\"search\";a:8:{i:0;s:16:\"Black Chess Rook\";i:1;s:5:\"board\";i:2;s:6:\"castle\";i:3;s:9:\"checkmate\";i:4;s:4:\"game\";i:5;s:8:\"strategy\";i:6;s:10:\"chess-rook\";i:7;s:10:\"chess rook\";}}s:19:\"fas fa-chevron-down\";a:2:{s:5:\"label\";s:12:\"Chevron Down\";s:6:\"search\";a:6:{i:0;s:5:\"arrow\";i:1;s:8:\"download\";i:2;s:6:\"expand\";i:3;s:6:\"insert\";i:4;s:12:\"chevron-down\";i:5;s:12:\"chevron down\";}}s:19:\"fas fa-chevron-left\";a:2:{s:5:\"label\";s:12:\"Chevron Left\";s:6:\"search\";a:7:{i:0;s:27:\"Left-Pointing Angle Bracket\";i:1;s:5:\"arrow\";i:2;s:4:\"back\";i:3;s:7:\"bracket\";i:4;s:8:\"previous\";i:5;s:12:\"chevron-left\";i:6;s:12:\"chevron left\";}}s:20:\"fas fa-chevron-right\";a:2:{s:5:\"label\";s:13:\"Chevron Right\";s:6:\"search\";a:7:{i:0;s:28:\"Right-Pointing Angle Bracket\";i:1;s:5:\"arrow\";i:2;s:7:\"bracket\";i:3;s:7:\"forward\";i:4;s:4:\"next\";i:5;s:13:\"chevron-right\";i:6;s:13:\"chevron right\";}}s:17:\"fas fa-chevron-up\";a:2:{s:5:\"label\";s:10:\"Chevron Up\";s:6:\"search\";a:6:{i:0;s:5:\"arrow\";i:1;s:8:\"collapse\";i:2;s:7:\"upgrade\";i:3;s:6:\"upload\";i:4;s:10:\"chevron-up\";i:5;s:10:\"chevron up\";}}s:12:\"fas fa-child\";a:2:{s:5:\"label\";s:5:\"Child\";s:6:\"search\";a:8:{i:0;s:3:\"boy\";i:1;s:4:\"girl\";i:2;s:3:\"kid\";i:3;s:7:\"toddler\";i:4;s:3:\"uer\";i:5;s:5:\"young\";i:6;s:5:\"youth\";i:7;s:5:\"child\";}}s:22:\"fas fa-child-combatant\";a:2:{s:5:\"label\";s:15:\"Child Combatant\";s:6:\"search\";a:3:{i:0;s:9:\"combatant\";i:1;s:15:\"child-combatant\";i:2;s:15:\"child combatant\";}}s:18:\"fas fa-child-dress\";a:2:{s:5:\"label\";s:11:\"Child Dress\";s:6:\"search\";a:9:{i:0;s:3:\"boy\";i:1;s:4:\"girl\";i:2;s:3:\"kid\";i:3;s:7:\"toddler\";i:4;s:3:\"uer\";i:5;s:5:\"young\";i:6;s:5:\"youth\";i:7;s:11:\"child-dress\";i:8;s:11:\"child dress\";}}s:21:\"fas fa-child-reaching\";a:2:{s:5:\"label\";s:14:\"Child Reaching\";s:6:\"search\";a:9:{i:0;s:3:\"boy\";i:1;s:4:\"girl\";i:2;s:3:\"kid\";i:3;s:7:\"toddler\";i:4;s:3:\"uer\";i:5;s:5:\"young\";i:6;s:5:\"youth\";i:7;s:14:\"child-reaching\";i:8;s:14:\"child reaching\";}}s:15:\"fas fa-children\";a:2:{s:5:\"label\";s:8:\"Children\";s:6:\"search\";a:10:{i:0;s:3:\"boy\";i:1;s:5:\"child\";i:2;s:4:\"girl\";i:3;s:3:\"kid\";i:4;s:4:\"kids\";i:5;s:8:\"together\";i:6;s:3:\"uer\";i:7;s:5:\"young\";i:8;s:5:\"youth\";i:9;s:8:\"children\";}}s:13:\"fab fa-chrome\";a:2:{s:5:\"label\";s:6:\"Chrome\";s:6:\"search\";a:2:{i:0;s:7:\"browser\";i:1;s:6:\"chrome\";}}s:17:\"fab fa-chromecast\";a:2:{s:5:\"label\";s:10:\"Chromecast\";s:6:\"search\";a:1:{i:0;s:10:\"chromecast\";}}s:13:\"fas fa-church\";a:2:{s:5:\"label\";s:6:\"Church\";s:6:\"search\";a:8:{i:0;s:9:\"Christian\";i:1;s:8:\"building\";i:2;s:9:\"cathedral\";i:3;s:6:\"chapel\";i:4;s:6:\"church\";i:5;s:9:\"community\";i:6;s:5:\"cross\";i:7;s:8:\"religion\";}}s:13:\"fas fa-circle\";a:2:{s:5:\"label\";s:14:\"Circle (solid)\";s:6:\"search\";a:29:{i:0;s:12:\"Black Circle\";i:1;s:18:\"Black Large Circle\";i:2;s:12:\"black circle\";i:3;s:4:\"blue\";i:4;s:11:\"blue circle\";i:5;s:5:\"brown\";i:6;s:12:\"brown circle\";i:7;s:5:\"chart\";i:8;s:6:\"circle\";i:9;s:11:\"circle-thin\";i:10;s:8:\"diameter\";i:11;s:3:\"dot\";i:12;s:7:\"ellipse\";i:13;s:4:\"fill\";i:14;s:9:\"geometric\";i:15;s:5:\"green\";i:16;s:12:\"green circle\";i:17;s:12:\"notification\";i:18;s:6:\"orange\";i:19;s:13:\"orange circle\";i:20;s:8:\"progress\";i:21;s:6:\"purple\";i:22;s:13:\"purple circle\";i:23;s:3:\"red\";i:24;s:10:\"red circle\";i:25;s:5:\"round\";i:26;s:12:\"white circle\";i:27;s:6:\"yellow\";i:28;s:13:\"yellow circle\";}}s:13:\"far fa-circle\";a:2:{s:5:\"label\";s:16:\"Circle (regular)\";s:6:\"search\";a:29:{i:0;s:12:\"Black Circle\";i:1;s:18:\"Black Large Circle\";i:2;s:12:\"black circle\";i:3;s:4:\"blue\";i:4;s:11:\"blue circle\";i:5;s:5:\"brown\";i:6;s:12:\"brown circle\";i:7;s:5:\"chart\";i:8;s:6:\"circle\";i:9;s:11:\"circle-thin\";i:10;s:8:\"diameter\";i:11;s:3:\"dot\";i:12;s:7:\"ellipse\";i:13;s:4:\"fill\";i:14;s:9:\"geometric\";i:15;s:5:\"green\";i:16;s:12:\"green circle\";i:17;s:12:\"notification\";i:18;s:6:\"orange\";i:19;s:13:\"orange circle\";i:20;s:8:\"progress\";i:21;s:6:\"purple\";i:22;s:13:\"purple circle\";i:23;s:3:\"red\";i:24;s:10:\"red circle\";i:25;s:5:\"round\";i:26;s:12:\"white circle\";i:27;s:6:\"yellow\";i:28;s:13:\"yellow circle\";}}s:24:\"fas fa-circle-arrow-down\";a:2:{s:5:\"label\";s:17:\"Circle Arrow Down\";s:6:\"search\";a:3:{i:0;s:8:\"download\";i:1;s:17:\"circle-arrow-down\";i:2;s:17:\"circle arrow down\";}}s:24:\"fas fa-circle-arrow-left\";a:2:{s:5:\"label\";s:17:\"Circle Arrow Left\";s:6:\"search\";a:4:{i:0;s:4:\"back\";i:1;s:8:\"previous\";i:2;s:17:\"circle-arrow-left\";i:3;s:17:\"circle arrow left\";}}s:25:\"fas fa-circle-arrow-right\";a:2:{s:5:\"label\";s:18:\"Circle Arrow Right\";s:6:\"search\";a:4:{i:0;s:7:\"forward\";i:1;s:4:\"next\";i:2;s:18:\"circle-arrow-right\";i:3;s:18:\"circle arrow right\";}}s:22:\"fas fa-circle-arrow-up\";a:2:{s:5:\"label\";s:15:\"Circle Arrow Up\";s:6:\"search\";a:4:{i:0;s:7:\"upgrade\";i:1;s:6:\"upload\";i:2;s:15:\"circle-arrow-up\";i:3;s:15:\"circle arrow up\";}}s:19:\"fas fa-circle-check\";a:2:{s:5:\"label\";s:20:\"Circle Check (solid)\";s:6:\"search\";a:19:{i:0;s:6:\"accept\";i:1;s:8:\"affected\";i:2;s:5:\"agree\";i:3;s:5:\"clear\";i:4;s:7:\"confirm\";i:5;s:7:\"correct\";i:6;s:6:\"coupon\";i:7;s:4:\"done\";i:8;s:6:\"enable\";i:9;s:2:\"ok\";i:10;s:6:\"select\";i:11;s:7:\"success\";i:12;s:4:\"tick\";i:13;s:4:\"todo\";i:14;s:8:\"validate\";i:15;s:7:\"working\";i:16;s:3:\"yes\";i:17;s:12:\"circle-check\";i:18;s:12:\"circle check\";}}s:19:\"far fa-circle-check\";a:2:{s:5:\"label\";s:22:\"Circle Check (regular)\";s:6:\"search\";a:19:{i:0;s:6:\"accept\";i:1;s:8:\"affected\";i:2;s:5:\"agree\";i:3;s:5:\"clear\";i:4;s:7:\"confirm\";i:5;s:7:\"correct\";i:6;s:6:\"coupon\";i:7;s:4:\"done\";i:8;s:6:\"enable\";i:9;s:2:\"ok\";i:10;s:6:\"select\";i:11;s:7:\"success\";i:12;s:4:\"tick\";i:13;s:4:\"todo\";i:14;s:8:\"validate\";i:15;s:7:\"working\";i:16;s:3:\"yes\";i:17;s:12:\"circle-check\";i:18;s:12:\"circle check\";}}s:26:\"fas fa-circle-chevron-down\";a:2:{s:5:\"label\";s:19:\"Circle Chevron Down\";s:6:\"search\";a:7:{i:0;s:5:\"arrow\";i:1;s:8:\"download\";i:2;s:8:\"dropdown\";i:3;s:4:\"menu\";i:4;s:4:\"more\";i:5;s:19:\"circle-chevron-down\";i:6;s:19:\"circle chevron down\";}}s:26:\"fas fa-circle-chevron-left\";a:2:{s:5:\"label\";s:19:\"Circle Chevron Left\";s:6:\"search\";a:5:{i:0;s:5:\"arrow\";i:1;s:4:\"back\";i:2;s:8:\"previous\";i:3;s:19:\"circle-chevron-left\";i:4;s:19:\"circle chevron left\";}}s:27:\"fas fa-circle-chevron-right\";a:2:{s:5:\"label\";s:20:\"Circle Chevron Right\";s:6:\"search\";a:5:{i:0;s:5:\"arrow\";i:1;s:7:\"forward\";i:2;s:4:\"next\";i:3;s:20:\"circle-chevron-right\";i:4;s:20:\"circle chevron right\";}}s:24:\"fas fa-circle-chevron-up\";a:2:{s:5:\"label\";s:17:\"Circle Chevron Up\";s:6:\"search\";a:6:{i:0;s:5:\"arrow\";i:1;s:8:\"collapse\";i:2;s:7:\"upgrade\";i:3;s:6:\"upload\";i:4;s:17:\"circle-chevron-up\";i:5;s:17:\"circle chevron up\";}}s:28:\"fas fa-circle-dollar-to-slot\";a:2:{s:5:\"label\";s:21:\"Circle Dollar To Slot\";s:6:\"search\";a:7:{i:0;s:10:\"contribute\";i:1;s:10:\"generosity\";i:2;s:4:\"gift\";i:3;s:4:\"give\";i:4;s:7:\"premium\";i:5;s:21:\"circle-dollar-to-slot\";i:6;s:21:\"circle dollar to slot\";}}s:17:\"fas fa-circle-dot\";a:2:{s:5:\"label\";s:18:\"Circle Dot (solid)\";s:6:\"search\";a:9:{i:0;s:8:\"bullseye\";i:1;s:6:\"button\";i:2;s:9:\"geometric\";i:3;s:12:\"notification\";i:4;s:5:\"radio\";i:5;s:12:\"radio button\";i:6;s:6:\"target\";i:7;s:10:\"circle-dot\";i:8;s:10:\"circle dot\";}}s:17:\"far fa-circle-dot\";a:2:{s:5:\"label\";s:20:\"Circle Dot (regular)\";s:6:\"search\";a:9:{i:0;s:8:\"bullseye\";i:1;s:6:\"button\";i:2;s:9:\"geometric\";i:3;s:12:\"notification\";i:4;s:5:\"radio\";i:5;s:12:\"radio button\";i:6;s:6:\"target\";i:7;s:10:\"circle-dot\";i:8;s:10:\"circle dot\";}}s:18:\"fas fa-circle-down\";a:2:{s:5:\"label\";s:19:\"Circle Down (solid)\";s:6:\"search\";a:4:{i:0;s:19:\"arrow-circle-o-down\";i:1;s:8:\"download\";i:2;s:11:\"circle-down\";i:3;s:11:\"circle down\";}}s:18:\"far fa-circle-down\";a:2:{s:5:\"label\";s:21:\"Circle Down (regular)\";s:6:\"search\";a:4:{i:0;s:19:\"arrow-circle-o-down\";i:1;s:8:\"download\";i:2;s:11:\"circle-down\";i:3;s:11:\"circle down\";}}s:25:\"fas fa-circle-exclamation\";a:2:{s:5:\"label\";s:18:\"Circle Exclamation\";s:6:\"search\";a:16:{i:0;s:6:\"affect\";i:1;s:5:\"alert\";i:2;s:9:\"attention\";i:3;s:6:\"damage\";i:4;s:6:\"danger\";i:5;s:5:\"error\";i:6;s:6:\"failed\";i:7;s:9:\"important\";i:8;s:6:\"notice\";i:9;s:12:\"notification\";i:10;s:6:\"notify\";i:11;s:7:\"problem\";i:12;s:8:\"required\";i:13;s:7:\"warning\";i:14;s:18:\"circle-exclamation\";i:15;s:18:\"circle exclamation\";}}s:15:\"fas fa-circle-h\";a:2:{s:5:\"label\";s:8:\"Circle H\";s:6:\"search\";a:8:{i:0;s:30:\"Circled Latin Capital Letter H\";i:1;s:6:\"clinic\";i:2;s:8:\"covid-19\";i:3;s:9:\"emergency\";i:4;s:6:\"letter\";i:5;s:3:\"map\";i:6;s:8:\"circle-h\";i:7;s:8:\"circle h\";}}s:25:\"fas fa-circle-half-stroke\";a:2:{s:5:\"label\";s:18:\"Circle Half Stroke\";s:6:\"search\";a:12:{i:0;s:27:\"Circle with Left Half Black\";i:1;s:6:\"adjust\";i:2;s:5:\"chart\";i:3;s:8:\"contrast\";i:4;s:4:\"dark\";i:5;s:4:\"fill\";i:6;s:5:\"light\";i:7;s:3:\"pie\";i:8;s:8:\"progress\";i:9;s:10:\"saturation\";i:10;s:18:\"circle-half-stroke\";i:11;s:18:\"circle half stroke\";}}s:18:\"fas fa-circle-info\";a:2:{s:5:\"label\";s:11:\"Circle Info\";s:6:\"search\";a:7:{i:0;s:7:\"details\";i:1;s:4:\"help\";i:2;s:11:\"information\";i:3;s:4:\"more\";i:4;s:7:\"support\";i:5;s:11:\"circle-info\";i:6;s:11:\"circle info\";}}s:18:\"fas fa-circle-left\";a:2:{s:5:\"label\";s:19:\"Circle Left (solid)\";s:6:\"search\";a:5:{i:0;s:19:\"arrow-circle-o-left\";i:1;s:4:\"back\";i:2;s:8:\"previous\";i:3;s:11:\"circle-left\";i:4;s:11:\"circle left\";}}s:18:\"far fa-circle-left\";a:2:{s:5:\"label\";s:21:\"Circle Left (regular)\";s:6:\"search\";a:5:{i:0;s:19:\"arrow-circle-o-left\";i:1;s:4:\"back\";i:2;s:8:\"previous\";i:3;s:11:\"circle-left\";i:4;s:11:\"circle left\";}}s:19:\"fas fa-circle-minus\";a:2:{s:5:\"label\";s:12:\"Circle Minus\";s:6:\"search\";a:8:{i:0;s:6:\"delete\";i:1;s:4:\"hide\";i:2;s:8:\"negative\";i:3;s:6:\"remove\";i:4;s:5:\"shape\";i:5;s:5:\"trash\";i:6;s:12:\"circle-minus\";i:7;s:12:\"circle minus\";}}s:19:\"fas fa-circle-nodes\";a:2:{s:5:\"label\";s:12:\"Circle Nodes\";s:6:\"search\";a:5:{i:0;s:7:\"cluster\";i:1;s:7:\"connect\";i:2;s:7:\"network\";i:3;s:12:\"circle-nodes\";i:4;s:12:\"circle nodes\";}}s:19:\"fas fa-circle-notch\";a:2:{s:5:\"label\";s:12:\"Circle Notch\";s:6:\"search\";a:8:{i:0;s:14:\"circle-o-notch\";i:1;s:8:\"diameter\";i:2;s:3:\"dot\";i:3;s:7:\"ellipse\";i:4;s:5:\"round\";i:5;s:7:\"spinner\";i:6;s:12:\"circle-notch\";i:7;s:12:\"circle notch\";}}s:19:\"fas fa-circle-pause\";a:2:{s:5:\"label\";s:20:\"Circle Pause (solid)\";s:6:\"search\";a:4:{i:0;s:4:\"hold\";i:1;s:4:\"wait\";i:2;s:12:\"circle-pause\";i:3;s:12:\"circle pause\";}}s:19:\"far fa-circle-pause\";a:2:{s:5:\"label\";s:22:\"Circle Pause (regular)\";s:6:\"search\";a:4:{i:0;s:4:\"hold\";i:1;s:4:\"wait\";i:2;s:12:\"circle-pause\";i:3;s:12:\"circle pause\";}}s:18:\"fas fa-circle-play\";a:2:{s:5:\"label\";s:19:\"Circle Play (solid)\";s:6:\"search\";a:8:{i:0;s:5:\"audio\";i:1;s:5:\"music\";i:2;s:7:\"playing\";i:3;s:5:\"sound\";i:4;s:5:\"start\";i:5;s:5:\"video\";i:6;s:11:\"circle-play\";i:7;s:11:\"circle play\";}}s:18:\"far fa-circle-play\";a:2:{s:5:\"label\";s:21:\"Circle Play (regular)\";s:6:\"search\";a:8:{i:0;s:5:\"audio\";i:1;s:5:\"music\";i:2;s:7:\"playing\";i:3;s:5:\"sound\";i:4;s:5:\"start\";i:5;s:5:\"video\";i:6;s:11:\"circle-play\";i:7;s:11:\"circle play\";}}s:18:\"fas fa-circle-plus\";a:2:{s:5:\"label\";s:11:\"Circle Plus\";s:6:\"search\";a:8:{i:0;s:3:\"add\";i:1;s:6:\"create\";i:2;s:6:\"expand\";i:3;s:3:\"new\";i:4;s:8:\"positive\";i:5;s:5:\"shape\";i:6;s:11:\"circle-plus\";i:7;s:11:\"circle plus\";}}s:22:\"fas fa-circle-question\";a:2:{s:5:\"label\";s:23:\"Circle Question (solid)\";s:6:\"search\";a:7:{i:0;s:3:\"faq\";i:1;s:4:\"help\";i:2;s:11:\"information\";i:3;s:7:\"support\";i:4;s:7:\"unknown\";i:5;s:15:\"circle-question\";i:6;s:15:\"circle question\";}}s:22:\"far fa-circle-question\";a:2:{s:5:\"label\";s:25:\"Circle Question (regular)\";s:6:\"search\";a:7:{i:0;s:3:\"faq\";i:1;s:4:\"help\";i:2;s:11:\"information\";i:3;s:7:\"support\";i:4;s:7:\"unknown\";i:5;s:15:\"circle-question\";i:6;s:15:\"circle question\";}}s:23:\"fas fa-circle-radiation\";a:2:{s:5:\"label\";s:16:\"Circle Radiation\";s:6:\"search\";a:10:{i:0;s:6:\"danger\";i:1;s:9:\"dangerous\";i:2;s:6:\"deadly\";i:3;s:6:\"hazard\";i:4;s:7:\"nuclear\";i:5;s:11:\"radioactive\";i:6;s:4:\"sign\";i:7;s:7:\"warning\";i:8;s:16:\"circle-radiation\";i:9;s:16:\"circle radiation\";}}s:19:\"fas fa-circle-right\";a:2:{s:5:\"label\";s:20:\"Circle Right (solid)\";s:6:\"search\";a:5:{i:0;s:20:\"arrow-circle-o-right\";i:1;s:7:\"forward\";i:2;s:4:\"next\";i:3;s:12:\"circle-right\";i:4;s:12:\"circle right\";}}s:19:\"far fa-circle-right\";a:2:{s:5:\"label\";s:22:\"Circle Right (regular)\";s:6:\"search\";a:5:{i:0;s:20:\"arrow-circle-o-right\";i:1;s:7:\"forward\";i:2;s:4:\"next\";i:3;s:12:\"circle-right\";i:4;s:12:\"circle right\";}}s:18:\"fas fa-circle-stop\";a:2:{s:5:\"label\";s:19:\"Circle Stop (solid)\";s:6:\"search\";a:6:{i:0;s:5:\"block\";i:1;s:3:\"box\";i:2;s:6:\"circle\";i:3;s:6:\"square\";i:4;s:11:\"circle-stop\";i:5;s:11:\"circle stop\";}}s:18:\"far fa-circle-stop\";a:2:{s:5:\"label\";s:21:\"Circle Stop (regular)\";s:6:\"search\";a:6:{i:0;s:5:\"block\";i:1;s:3:\"box\";i:2;s:6:\"circle\";i:3;s:6:\"square\";i:4;s:11:\"circle-stop\";i:5;s:11:\"circle stop\";}}s:16:\"fas fa-circle-up\";a:2:{s:5:\"label\";s:17:\"Circle Up (solid)\";s:6:\"search\";a:4:{i:0;s:17:\"arrow-circle-o-up\";i:1;s:7:\"upgrade\";i:2;s:9:\"circle-up\";i:3;s:9:\"circle up\";}}s:16:\"far fa-circle-up\";a:2:{s:5:\"label\";s:19:\"Circle Up (regular)\";s:6:\"search\";a:4:{i:0;s:17:\"arrow-circle-o-up\";i:1;s:7:\"upgrade\";i:2;s:9:\"circle-up\";i:3;s:9:\"circle up\";}}s:18:\"fas fa-circle-user\";a:2:{s:5:\"label\";s:19:\"Circle User (solid)\";s:6:\"search\";a:6:{i:0;s:8:\"employee\";i:1;s:3:\"uer\";i:2;s:8:\"username\";i:3;s:12:\"users-people\";i:4;s:11:\"circle-user\";i:5;s:11:\"circle user\";}}s:18:\"far fa-circle-user\";a:2:{s:5:\"label\";s:21:\"Circle User (regular)\";s:6:\"search\";a:6:{i:0;s:8:\"employee\";i:1;s:3:\"uer\";i:2;s:8:\"username\";i:3;s:12:\"users-people\";i:4;s:11:\"circle-user\";i:5;s:11:\"circle user\";}}s:19:\"fas fa-circle-xmark\";a:2:{s:5:\"label\";s:20:\"Circle Xmark (solid)\";s:6:\"search\";a:14:{i:0;s:5:\"close\";i:1;s:5:\"cross\";i:2;s:7:\"destroy\";i:3;s:4:\"exit\";i:4;s:9:\"incorrect\";i:5;s:6:\"notice\";i:6;s:12:\"notification\";i:7;s:6:\"notify\";i:8;s:7:\"problem\";i:9;s:7:\"uncheck\";i:10;s:5:\"wrong\";i:11;s:1:\"x\";i:12;s:12:\"circle-xmark\";i:13;s:12:\"circle xmark\";}}s:19:\"far fa-circle-xmark\";a:2:{s:5:\"label\";s:22:\"Circle Xmark (regular)\";s:6:\"search\";a:14:{i:0;s:5:\"close\";i:1;s:5:\"cross\";i:2;s:7:\"destroy\";i:3;s:4:\"exit\";i:4;s:9:\"incorrect\";i:5;s:6:\"notice\";i:6;s:12:\"notification\";i:7;s:6:\"notify\";i:8;s:7:\"problem\";i:9;s:7:\"uncheck\";i:10;s:5:\"wrong\";i:11;s:1:\"x\";i:12;s:12:\"circle-xmark\";i:13;s:12:\"circle xmark\";}}s:11:\"fas fa-city\";a:2:{s:5:\"label\";s:4:\"City\";s:6:\"search\";a:7:{i:0;s:9:\"buildings\";i:1;s:4:\"busy\";i:2;s:4:\"city\";i:3;s:9:\"cityscape\";i:4;s:11:\"skyscrapers\";i:5;s:5:\"urban\";i:6;s:7:\"windows\";}}s:19:\"fas fa-clapperboard\";a:2:{s:5:\"label\";s:12:\"Clapperboard\";s:6:\"search\";a:8:{i:0;s:6:\"camera\";i:1;s:7:\"clapper\";i:2;s:13:\"clapper board\";i:3;s:8:\"director\";i:4;s:4:\"film\";i:5;s:5:\"movie\";i:6;s:6:\"record\";i:7;s:12:\"clapperboard\";}}s:16:\"fas fa-clipboard\";a:2:{s:5:\"label\";s:17:\"Clipboard (solid)\";s:6:\"search\";a:7:{i:0;s:8:\"clipboar\";i:1;s:9:\"clipboard\";i:2;s:4:\"copy\";i:3;s:7:\"notepad\";i:4;s:5:\"notes\";i:5;s:5:\"paste\";i:6;s:6:\"record\";}}s:16:\"far fa-clipboard\";a:2:{s:5:\"label\";s:19:\"Clipboard (regular)\";s:6:\"search\";a:7:{i:0;s:8:\"clipboar\";i:1;s:9:\"clipboard\";i:2;s:4:\"copy\";i:3;s:7:\"notepad\";i:4;s:5:\"notes\";i:5;s:5:\"paste\";i:6;s:6:\"record\";}}s:22:\"fas fa-clipboard-check\";a:2:{s:5:\"label\";s:15:\"Clipboard Check\";s:6:\"search\";a:16:{i:0;s:6:\"accept\";i:1;s:5:\"agree\";i:2;s:7:\"confirm\";i:3;s:6:\"coupon\";i:4;s:4:\"done\";i:5;s:6:\"enable\";i:6;s:2:\"ok\";i:7;s:6:\"select\";i:8;s:7:\"success\";i:9;s:4:\"tick\";i:10;s:4:\"todo\";i:11;s:8:\"validate\";i:12;s:7:\"working\";i:13;s:3:\"yes\";i:14;s:15:\"clipboard-check\";i:15;s:15:\"clipboard check\";}}s:21:\"fas fa-clipboard-list\";a:2:{s:5:\"label\";s:14:\"Clipboard List\";s:6:\"search\";a:15:{i:0;s:10:\"cheatsheet\";i:1;s:9:\"checklist\";i:2;s:9:\"completed\";i:3;s:4:\"done\";i:4;s:8:\"finished\";i:5;s:10:\"intinerary\";i:6;s:2:\"ol\";i:7;s:8:\"schedule\";i:8;s:7:\"summary\";i:9;s:4:\"tick\";i:10;s:4:\"todo\";i:11;s:2:\"ul\";i:12;s:8:\"wishlist\";i:13;s:14:\"clipboard-list\";i:14;s:14:\"clipboard list\";}}s:25:\"fas fa-clipboard-question\";a:2:{s:5:\"label\";s:18:\"Clipboard Question\";s:6:\"search\";a:7:{i:0;s:10:\"assistance\";i:1;s:3:\"faq\";i:2;s:9:\"interview\";i:3;s:5:\"query\";i:4;s:8:\"question\";i:5;s:18:\"clipboard-question\";i:6;s:18:\"clipboard question\";}}s:21:\"fas fa-clipboard-user\";a:2:{s:5:\"label\";s:14:\"Clipboard User\";s:6:\"search\";a:8:{i:0;s:10:\"attendance\";i:1;s:8:\"employee\";i:2;s:6:\"record\";i:3;s:6:\"roster\";i:4;s:5:\"staff\";i:5;s:3:\"uer\";i:6;s:14:\"clipboard-user\";i:7;s:14:\"clipboard user\";}}s:12:\"fas fa-clock\";a:2:{s:5:\"label\";s:13:\"Clock (solid)\";s:6:\"search\";a:19:{i:0;s:2:\"00\";i:1;s:1:\"4\";i:2;s:4:\"4:00\";i:3;s:5:\"clock\";i:4;s:4:\"date\";i:5;s:4:\"four\";i:6;s:14:\"four o’clock\";i:7;s:4:\"hour\";i:8;s:4:\"late\";i:9;s:6:\"minute\";i:10;s:7:\"o\'clock\";i:11;s:9:\"o’clock\";i:12;s:7:\"pending\";i:13;s:8:\"schedule\";i:14;s:7:\"ticking\";i:15;s:4:\"time\";i:16;s:5:\"timer\";i:17;s:9:\"timestamp\";i:18;s:5:\"watch\";}}s:12:\"far fa-clock\";a:2:{s:5:\"label\";s:15:\"Clock (regular)\";s:6:\"search\";a:19:{i:0;s:2:\"00\";i:1;s:1:\"4\";i:2;s:4:\"4:00\";i:3;s:5:\"clock\";i:4;s:4:\"date\";i:5;s:4:\"four\";i:6;s:14:\"four o’clock\";i:7;s:4:\"hour\";i:8;s:4:\"late\";i:9;s:6:\"minute\";i:10;s:7:\"o\'clock\";i:11;s:9:\"o’clock\";i:12;s:7:\"pending\";i:13;s:8:\"schedule\";i:14;s:7:\"ticking\";i:15;s:4:\"time\";i:16;s:5:\"timer\";i:17;s:9:\"timestamp\";i:18;s:5:\"watch\";}}s:24:\"fas fa-clock-rotate-left\";a:2:{s:5:\"label\";s:17:\"Clock Rotate Left\";s:6:\"search\";a:10:{i:0;s:6:\"Rewind\";i:1;s:5:\"clock\";i:2;s:7:\"pending\";i:3;s:7:\"reverse\";i:4;s:4:\"time\";i:5;s:12:\"time machine\";i:6;s:11:\"time travel\";i:7;s:7:\"waiting\";i:8;s:17:\"clock-rotate-left\";i:9;s:17:\"clock rotate left\";}}s:12:\"fas fa-clone\";a:2:{s:5:\"label\";s:13:\"Clone (solid)\";s:6:\"search\";a:5:{i:0;s:7:\"arrange\";i:1;s:4:\"copy\";i:2;s:9:\"duplicate\";i:3;s:5:\"paste\";i:4;s:5:\"clone\";}}s:12:\"far fa-clone\";a:2:{s:5:\"label\";s:15:\"Clone (regular)\";s:6:\"search\";a:5:{i:0;s:7:\"arrange\";i:1;s:4:\"copy\";i:2;s:9:\"duplicate\";i:3;s:5:\"paste\";i:4;s:5:\"clone\";}}s:24:\"fas fa-closed-captioning\";a:2:{s:5:\"label\";s:25:\"Closed Captioning (solid)\";s:6:\"search\";a:9:{i:0;s:2:\"cc\";i:1;s:4:\"deaf\";i:2;s:7:\"hearing\";i:3;s:8:\"subtitle\";i:4;s:10:\"subtitling\";i:5;s:4:\"text\";i:6;s:5:\"video\";i:7;s:17:\"closed-captioning\";i:8;s:17:\"closed captioning\";}}s:24:\"far fa-closed-captioning\";a:2:{s:5:\"label\";s:27:\"Closed Captioning (regular)\";s:6:\"search\";a:9:{i:0;s:2:\"cc\";i:1;s:4:\"deaf\";i:2;s:7:\"hearing\";i:3;s:8:\"subtitle\";i:4;s:10:\"subtitling\";i:5;s:4:\"text\";i:6;s:5:\"video\";i:7;s:17:\"closed-captioning\";i:8;s:17:\"closed captioning\";}}s:12:\"fas fa-cloud\";a:2:{s:5:\"label\";s:5:\"Cloud\";s:6:\"search\";a:7:{i:0;s:10:\"atmosphere\";i:1;s:5:\"cloud\";i:2;s:3:\"fog\";i:3;s:8:\"overcast\";i:4;s:4:\"save\";i:5;s:6:\"upload\";i:6;s:7:\"weather\";}}s:23:\"fas fa-cloud-arrow-down\";a:2:{s:5:\"label\";s:16:\"Cloud Arrow Down\";s:6:\"search\";a:5:{i:0;s:8:\"download\";i:1;s:6:\"export\";i:2;s:4:\"save\";i:3;s:16:\"cloud-arrow-down\";i:4;s:16:\"cloud arrow down\";}}s:21:\"fas fa-cloud-arrow-up\";a:2:{s:5:\"label\";s:14:\"Cloud Arrow Up\";s:6:\"search\";a:6:{i:0;s:6:\"import\";i:1;s:4:\"save\";i:2;s:7:\"upgrade\";i:3;s:6:\"upload\";i:4;s:14:\"cloud-arrow-up\";i:5;s:14:\"cloud arrow up\";}}s:17:\"fas fa-cloud-bolt\";a:2:{s:5:\"label\";s:10:\"Cloud Bolt\";s:6:\"search\";a:10:{i:0;s:4:\"bolt\";i:1;s:5:\"cloud\";i:2;s:20:\"cloud with lightning\";i:3;s:9:\"lightning\";i:4;s:13:\"precipitation\";i:5;s:4:\"rain\";i:6;s:5:\"storm\";i:7;s:7:\"weather\";i:8;s:10:\"cloud-bolt\";i:9;s:10:\"cloud bolt\";}}s:21:\"fas fa-cloud-meatball\";a:2:{s:5:\"label\";s:14:\"Cloud Meatball\";s:6:\"search\";a:6:{i:0;s:8:\"FLDSMDFR\";i:1;s:4:\"food\";i:2;s:9:\"spaghetti\";i:3;s:5:\"storm\";i:4;s:14:\"cloud-meatball\";i:5;s:14:\"cloud meatball\";}}s:17:\"fas fa-cloud-moon\";a:2:{s:5:\"label\";s:10:\"Cloud Moon\";s:6:\"search\";a:8:{i:0;s:8:\"crescent\";i:1;s:7:\"evening\";i:2;s:5:\"lunar\";i:3;s:5:\"night\";i:4;s:13:\"partly cloudy\";i:5;s:3:\"sky\";i:6;s:10:\"cloud-moon\";i:7;s:10:\"cloud moon\";}}s:22:\"fas fa-cloud-moon-rain\";a:2:{s:5:\"label\";s:15:\"Cloud Moon Rain\";s:6:\"search\";a:11:{i:0;s:8:\"crescent\";i:1;s:7:\"evening\";i:2;s:5:\"lunar\";i:3;s:5:\"night\";i:4;s:13:\"partly cloudy\";i:5;s:13:\"precipitation\";i:6;s:4:\"rain\";i:7;s:3:\"sky\";i:8;s:5:\"storm\";i:9;s:15:\"cloud-moon-rain\";i:10;s:15:\"cloud moon rain\";}}s:17:\"fas fa-cloud-rain\";a:2:{s:5:\"label\";s:10:\"Cloud Rain\";s:6:\"search\";a:9:{i:0;s:4:\"Rain\";i:1;s:5:\"cloud\";i:2;s:15:\"cloud with rain\";i:3;s:13:\"precipitation\";i:4;s:4:\"rain\";i:5;s:3:\"sky\";i:6;s:5:\"storm\";i:7;s:10:\"cloud-rain\";i:8;s:10:\"cloud rain\";}}s:26:\"fas fa-cloud-showers-heavy\";a:2:{s:5:\"label\";s:19:\"Cloud Showers Heavy\";s:6:\"search\";a:6:{i:0;s:13:\"precipitation\";i:1;s:4:\"rain\";i:2;s:3:\"sky\";i:3;s:5:\"storm\";i:4;s:19:\"cloud-showers-heavy\";i:5;s:19:\"cloud showers heavy\";}}s:26:\"fas fa-cloud-showers-water\";a:2:{s:5:\"label\";s:19:\"Cloud Showers Water\";s:6:\"search\";a:8:{i:0;s:5:\"cloud\";i:1;s:6:\"deluge\";i:2;s:5:\"flood\";i:3;s:4:\"rain\";i:4;s:5:\"storm\";i:5;s:5:\"surge\";i:6;s:19:\"cloud-showers-water\";i:7;s:19:\"cloud showers water\";}}s:16:\"fas fa-cloud-sun\";a:2:{s:5:\"label\";s:9:\"Cloud Sun\";s:6:\"search\";a:12:{i:0;s:5:\"clear\";i:1;s:5:\"cloud\";i:2;s:3:\"day\";i:3;s:7:\"daytime\";i:4;s:4:\"fall\";i:5;s:8:\"outdoors\";i:6;s:8:\"overcast\";i:7;s:13:\"partly cloudy\";i:8;s:3:\"sun\";i:9;s:16:\"sun behind cloud\";i:10;s:9:\"cloud-sun\";i:11;s:9:\"cloud sun\";}}s:21:\"fas fa-cloud-sun-rain\";a:2:{s:5:\"label\";s:14:\"Cloud Sun Rain\";s:6:\"search\";a:12:{i:0;s:5:\"cloud\";i:1;s:3:\"day\";i:2;s:8:\"overcast\";i:3;s:13:\"precipitation\";i:4;s:4:\"rain\";i:5;s:5:\"storm\";i:6;s:6:\"summer\";i:7;s:3:\"sun\";i:8;s:21:\"sun behind rain cloud\";i:9;s:9:\"sunshower\";i:10;s:14:\"cloud-sun-rain\";i:11;s:14:\"cloud sun rain\";}}s:17:\"fab fa-cloudflare\";a:2:{s:5:\"label\";s:10:\"Cloudflare\";s:6:\"search\";a:1:{i:0;s:10:\"cloudflare\";}}s:17:\"fab fa-cloudscale\";a:2:{s:5:\"label\";s:13:\"cloudscale.ch\";s:6:\"search\";a:2:{i:0;s:10:\"cloudscale\";i:1;s:13:\"cloudscale.ch\";}}s:17:\"fab fa-cloudsmith\";a:2:{s:5:\"label\";s:10:\"Cloudsmith\";s:6:\"search\";a:1:{i:0;s:10:\"cloudsmith\";}}s:19:\"fab fa-cloudversify\";a:2:{s:5:\"label\";s:12:\"cloudversify\";s:6:\"search\";a:1:{i:0;s:12:\"cloudversify\";}}s:13:\"fas fa-clover\";a:2:{s:5:\"label\";s:6:\"Clover\";s:6:\"search\";a:10:{i:0;s:1:\"4\";i:1;s:5:\"charm\";i:2;s:6:\"clover\";i:3;s:4:\"four\";i:4;s:16:\"four leaf clover\";i:5;s:16:\"four-leaf clover\";i:6;s:4:\"leaf\";i:7;s:10:\"leprechaun\";i:8;s:4:\"luck\";i:9;s:5:\"lucky\";}}s:13:\"fab fa-cmplid\";a:2:{s:5:\"label\";s:6:\"Cmplid\";s:6:\"search\";a:1:{i:0;s:6:\"cmplid\";}}s:11:\"fas fa-code\";a:2:{s:5:\"label\";s:4:\"Code\";s:6:\"search\";a:6:{i:0;s:8:\"brackets\";i:1;s:4:\"code\";i:2;s:11:\"development\";i:3;s:4:\"html\";i:4;s:5:\"mysql\";i:5;s:3:\"sql\";}}s:18:\"fas fa-code-branch\";a:2:{s:5:\"label\";s:11:\"Code Branch\";s:6:\"search\";a:11:{i:0;s:6:\"branch\";i:1;s:3:\"git\";i:2;s:6:\"github\";i:3;s:5:\"mysql\";i:4;s:6:\"rebase\";i:5;s:3:\"sql\";i:6;s:3:\"svn\";i:7;s:3:\"vcs\";i:8;s:7:\"version\";i:9;s:11:\"code-branch\";i:10;s:11:\"code branch\";}}s:18:\"fas fa-code-commit\";a:2:{s:5:\"label\";s:11:\"Code Commit\";s:6:\"search\";a:10:{i:0;s:6:\"commit\";i:1;s:3:\"git\";i:2;s:6:\"github\";i:3;s:4:\"hash\";i:4;s:6:\"rebase\";i:5;s:3:\"svn\";i:6;s:3:\"vcs\";i:7;s:7:\"version\";i:8;s:11:\"code-commit\";i:9;s:11:\"code commit\";}}s:19:\"fas fa-code-compare\";a:2:{s:5:\"label\";s:12:\"Code Compare\";s:6:\"search\";a:7:{i:0;s:7:\"compare\";i:1;s:3:\"git\";i:2;s:6:\"github\";i:3;s:3:\"svn\";i:4;s:7:\"version\";i:5;s:12:\"code-compare\";i:6;s:12:\"code compare\";}}s:16:\"fas fa-code-fork\";a:2:{s:5:\"label\";s:9:\"Code Fork\";s:6:\"search\";a:7:{i:0;s:4:\"fork\";i:1;s:3:\"git\";i:2;s:6:\"github\";i:3;s:3:\"svn\";i:4;s:7:\"version\";i:5;s:9:\"code-fork\";i:6;s:9:\"code fork\";}}s:17:\"fas fa-code-merge\";a:2:{s:5:\"label\";s:10:\"Code Merge\";s:6:\"search\";a:10:{i:0;s:3:\"git\";i:1;s:6:\"github\";i:2;s:5:\"merge\";i:3;s:2:\"pr\";i:4;s:6:\"rebase\";i:5;s:3:\"svn\";i:6;s:3:\"vcs\";i:7;s:7:\"version\";i:8;s:10:\"code-merge\";i:9;s:10:\"code merge\";}}s:24:\"fas fa-code-pull-request\";a:2:{s:5:\"label\";s:17:\"Code Pull Request\";s:6:\"search\";a:7:{i:0;s:3:\"git\";i:1;s:6:\"github\";i:2;s:2:\"pr\";i:3;s:3:\"svn\";i:4;s:7:\"version\";i:5;s:17:\"code-pull-request\";i:6;s:17:\"code pull request\";}}s:14:\"fab fa-codepen\";a:2:{s:5:\"label\";s:7:\"Codepen\";s:6:\"search\";a:1:{i:0;s:7:\"codepen\";}}s:15:\"fab fa-codiepie\";a:2:{s:5:\"label\";s:9:\"Codie Pie\";s:6:\"search\";a:2:{i:0;s:8:\"codiepie\";i:1;s:9:\"codie pie\";}}s:12:\"fas fa-coins\";a:2:{s:5:\"label\";s:5:\"Coins\";s:6:\"search\";a:8:{i:0;s:8:\"currency\";i:1;s:4:\"dime\";i:2;s:9:\"financial\";i:3;s:4:\"gold\";i:4;s:5:\"money\";i:5;s:5:\"penny\";i:6;s:7:\"premium\";i:7;s:5:\"coins\";}}s:17:\"fas fa-colon-sign\";a:2:{s:5:\"label\";s:10:\"Colon Sign\";s:6:\"search\";a:4:{i:0;s:10:\"Colon Sign\";i:1;s:8:\"currency\";i:2;s:10:\"colon-sign\";i:3;s:10:\"colon sign\";}}s:14:\"fas fa-comment\";a:2:{s:5:\"label\";s:15:\"Comment (solid)\";s:6:\"search\";a:18:{i:0;s:13:\" conversation\";i:1;s:11:\" discussion\";i:2;s:8:\" talking\";i:3;s:19:\"Right Speech Bubble\";i:4;s:6:\"answer\";i:5;s:6:\"bubble\";i:6;s:4:\"chat\";i:7;s:10:\"commenting\";i:8;s:12:\"conversation\";i:9;s:8:\"feedback\";i:10;s:7:\"message\";i:11;s:4:\"note\";i:12;s:12:\"notification\";i:13;s:3:\"sms\";i:14;s:6:\"speech\";i:15;s:4:\"talk\";i:16;s:7:\"texting\";i:17;s:7:\"comment\";}}s:14:\"far fa-comment\";a:2:{s:5:\"label\";s:17:\"Comment (regular)\";s:6:\"search\";a:18:{i:0;s:13:\" conversation\";i:1;s:11:\" discussion\";i:2;s:8:\" talking\";i:3;s:19:\"Right Speech Bubble\";i:4;s:6:\"answer\";i:5;s:6:\"bubble\";i:6;s:4:\"chat\";i:7;s:10:\"commenting\";i:8;s:12:\"conversation\";i:9;s:8:\"feedback\";i:10;s:7:\"message\";i:11;s:4:\"note\";i:12;s:12:\"notification\";i:13;s:3:\"sms\";i:14;s:6:\"speech\";i:15;s:4:\"talk\";i:16;s:7:\"texting\";i:17;s:7:\"comment\";}}s:21:\"fas fa-comment-dollar\";a:2:{s:5:\"label\";s:14:\"Comment Dollar\";s:6:\"search\";a:19:{i:0;s:6:\"answer\";i:1;s:6:\"bubble\";i:2;s:4:\"chat\";i:3;s:10:\"commenting\";i:4;s:12:\"conversation\";i:5;s:8:\"feedback\";i:6;s:7:\"message\";i:7;s:5:\"money\";i:8;s:4:\"note\";i:9;s:12:\"notification\";i:10;s:3:\"pay\";i:11;s:6:\"salary\";i:12;s:3:\"sms\";i:13;s:6:\"speech\";i:14;s:5:\"spend\";i:15;s:7:\"texting\";i:16;s:8:\"transfer\";i:17;s:14:\"comment-dollar\";i:18;s:14:\"comment dollar\";}}s:19:\"fas fa-comment-dots\";a:2:{s:5:\"label\";s:20:\"Comment Dots (solid)\";s:6:\"search\";a:21:{i:0;s:6:\"answer\";i:1;s:7:\"balloon\";i:2;s:6:\"bubble\";i:3;s:4:\"chat\";i:4;s:5:\"comic\";i:5;s:10:\"commenting\";i:6;s:12:\"conversation\";i:7;s:6:\"dialog\";i:8;s:8:\"feedback\";i:9;s:7:\"message\";i:10;s:4:\"more\";i:11;s:4:\"note\";i:12;s:12:\"notification\";i:13;s:5:\"reply\";i:14;s:7:\"request\";i:15;s:3:\"sms\";i:16;s:6:\"speech\";i:17;s:14:\"speech balloon\";i:18;s:7:\"texting\";i:19;s:12:\"comment-dots\";i:20;s:12:\"comment dots\";}}s:19:\"far fa-comment-dots\";a:2:{s:5:\"label\";s:22:\"Comment Dots (regular)\";s:6:\"search\";a:21:{i:0;s:6:\"answer\";i:1;s:7:\"balloon\";i:2;s:6:\"bubble\";i:3;s:4:\"chat\";i:4;s:5:\"comic\";i:5;s:10:\"commenting\";i:6;s:12:\"conversation\";i:7;s:6:\"dialog\";i:8;s:8:\"feedback\";i:9;s:7:\"message\";i:10;s:4:\"more\";i:11;s:4:\"note\";i:12;s:12:\"notification\";i:13;s:5:\"reply\";i:14;s:7:\"request\";i:15;s:3:\"sms\";i:16;s:6:\"speech\";i:17;s:14:\"speech balloon\";i:18;s:7:\"texting\";i:19;s:12:\"comment-dots\";i:20;s:12:\"comment dots\";}}s:22:\"fas fa-comment-medical\";a:2:{s:5:\"label\";s:15:\"Comment Medical\";s:6:\"search\";a:17:{i:0;s:6:\"advice\";i:1;s:6:\"answer\";i:2;s:6:\"bubble\";i:3;s:4:\"chat\";i:4;s:10:\"commenting\";i:5;s:12:\"conversation\";i:6;s:8:\"diagnose\";i:7;s:8:\"feedback\";i:8;s:7:\"message\";i:9;s:4:\"note\";i:10;s:12:\"notification\";i:11;s:12:\"prescription\";i:12;s:3:\"sms\";i:13;s:6:\"speech\";i:14;s:7:\"texting\";i:15;s:15:\"comment-medical\";i:16;s:15:\"comment medical\";}}s:20:\"fas fa-comment-slash\";a:2:{s:5:\"label\";s:13:\"Comment Slash\";s:6:\"search\";a:18:{i:0;s:6:\"answer\";i:1;s:6:\"bubble\";i:2;s:6:\"cancel\";i:3;s:4:\"chat\";i:4;s:10:\"commenting\";i:5;s:12:\"conversation\";i:6;s:8:\"disabled\";i:7;s:8:\"feedback\";i:8;s:7:\"message\";i:9;s:4:\"mute\";i:10;s:4:\"note\";i:11;s:12:\"notification\";i:12;s:5:\"quiet\";i:13;s:3:\"sms\";i:14;s:6:\"speech\";i:15;s:7:\"texting\";i:16;s:13:\"comment-slash\";i:17;s:13:\"comment slash\";}}s:18:\"fas fa-comment-sms\";a:2:{s:5:\"label\";s:11:\"Comment Sms\";s:6:\"search\";a:11:{i:0;s:6:\"answer\";i:1;s:4:\"chat\";i:2;s:12:\"conversation\";i:3;s:7:\"message\";i:4;s:6:\"mobile\";i:5;s:12:\"notification\";i:6;s:5:\"phone\";i:7;s:3:\"sms\";i:8;s:7:\"texting\";i:9;s:11:\"comment-sms\";i:10;s:11:\"comment sms\";}}s:15:\"fas fa-comments\";a:2:{s:5:\"label\";s:16:\"Comments (solid)\";s:6:\"search\";a:18:{i:0;s:13:\" conversation\";i:1;s:11:\" discussion\";i:2;s:8:\" talking\";i:3;s:18:\"Two Speech Bubbles\";i:4;s:6:\"answer\";i:5;s:6:\"bubble\";i:6;s:4:\"chat\";i:7;s:10:\"commenting\";i:8;s:12:\"conversation\";i:9;s:8:\"feedback\";i:10;s:7:\"message\";i:11;s:4:\"note\";i:12;s:12:\"notification\";i:13;s:3:\"sms\";i:14;s:6:\"speech\";i:15;s:4:\"talk\";i:16;s:7:\"texting\";i:17;s:8:\"comments\";}}s:15:\"far fa-comments\";a:2:{s:5:\"label\";s:18:\"Comments (regular)\";s:6:\"search\";a:18:{i:0;s:13:\" conversation\";i:1;s:11:\" discussion\";i:2;s:8:\" talking\";i:3;s:18:\"Two Speech Bubbles\";i:4;s:6:\"answer\";i:5;s:6:\"bubble\";i:6;s:4:\"chat\";i:7;s:10:\"commenting\";i:8;s:12:\"conversation\";i:9;s:8:\"feedback\";i:10;s:7:\"message\";i:11;s:4:\"note\";i:12;s:12:\"notification\";i:13;s:3:\"sms\";i:14;s:6:\"speech\";i:15;s:4:\"talk\";i:16;s:7:\"texting\";i:17;s:8:\"comments\";}}s:22:\"fas fa-comments-dollar\";a:2:{s:5:\"label\";s:15:\"Comments Dollar\";s:6:\"search\";a:19:{i:0;s:6:\"answer\";i:1;s:6:\"bubble\";i:2;s:4:\"chat\";i:3;s:10:\"commenting\";i:4;s:12:\"conversation\";i:5;s:8:\"feedback\";i:6;s:7:\"message\";i:7;s:5:\"money\";i:8;s:4:\"note\";i:9;s:12:\"notification\";i:10;s:3:\"pay\";i:11;s:6:\"salary\";i:12;s:3:\"sms\";i:13;s:6:\"speech\";i:14;s:5:\"spend\";i:15;s:7:\"texting\";i:16;s:8:\"transfer\";i:17;s:15:\"comments-dollar\";i:18;s:15:\"comments dollar\";}}s:19:\"fas fa-compact-disc\";a:2:{s:5:\"label\";s:12:\"Compact Disc\";s:6:\"search\";a:19:{i:0;s:17:\"Optical Disc Icon\";i:1;s:5:\"album\";i:2;s:7:\"blu-ray\";i:3;s:6:\"bluray\";i:4;s:2:\"cd\";i:5;s:8:\"computer\";i:6;s:4:\"disc\";i:7;s:4:\"disk\";i:8;s:3:\"dvd\";i:9;s:5:\"media\";i:10;s:5:\"movie\";i:11;s:5:\"music\";i:12;s:7:\"optical\";i:13;s:12:\"optical disk\";i:14;s:6:\"record\";i:15;s:5:\"video\";i:16;s:5:\"vinyl\";i:17;s:12:\"compact-disc\";i:18;s:12:\"compact disc\";}}s:14:\"fas fa-compass\";a:2:{s:5:\"label\";s:15:\"Compass (solid)\";s:6:\"search\";a:10:{i:0;s:7:\"compass\";i:1;s:10:\"directions\";i:2;s:9:\"directory\";i:3;s:8:\"location\";i:4;s:8:\"magnetic\";i:5;s:4:\"menu\";i:6;s:10:\"navigation\";i:7;s:12:\"orienteering\";i:8;s:6:\"safari\";i:9;s:6:\"travel\";}}s:14:\"far fa-compass\";a:2:{s:5:\"label\";s:17:\"Compass (regular)\";s:6:\"search\";a:10:{i:0;s:7:\"compass\";i:1;s:10:\"directions\";i:2;s:9:\"directory\";i:3;s:8:\"location\";i:4;s:8:\"magnetic\";i:5;s:4:\"menu\";i:6;s:10:\"navigation\";i:7;s:12:\"orienteering\";i:8;s:6:\"safari\";i:9;s:6:\"travel\";}}s:23:\"fas fa-compass-drafting\";a:2:{s:5:\"label\";s:16:\"Compass Drafting\";s:6:\"search\";a:7:{i:0;s:6:\"design\";i:1;s:3:\"map\";i:2;s:18:\"mechanical drawing\";i:3;s:4:\"plot\";i:4;s:8:\"plotting\";i:5;s:16:\"compass-drafting\";i:6;s:16:\"compass drafting\";}}s:15:\"fas fa-compress\";a:2:{s:5:\"label\";s:8:\"Compress\";s:6:\"search\";a:8:{i:0;s:8:\"collapse\";i:1;s:10:\"fullscreen\";i:2;s:8:\"minimize\";i:3;s:4:\"move\";i:4;s:6:\"resize\";i:5;s:6:\"shrink\";i:6;s:7:\"smaller\";i:7;s:8:\"compress\";}}s:15:\"fas fa-computer\";a:2:{s:5:\"label\";s:8:\"Computer\";s:6:\"search\";a:5:{i:0;s:8:\"computer\";i:1;s:7:\"desktop\";i:2;s:7:\"display\";i:3;s:7:\"monitor\";i:4;s:5:\"tower\";}}s:21:\"fas fa-computer-mouse\";a:2:{s:5:\"label\";s:14:\"Computer Mouse\";s:6:\"search\";a:7:{i:0;s:5:\"click\";i:1;s:8:\"computer\";i:2;s:14:\"computer mouse\";i:3;s:6:\"cursor\";i:4;s:5:\"input\";i:5;s:10:\"peripheral\";i:6;s:14:\"computer-mouse\";}}s:17:\"fab fa-confluence\";a:2:{s:5:\"label\";s:10:\"Confluence\";s:6:\"search\";a:2:{i:0;s:9:\"atlassian\";i:1;s:10:\"confluence\";}}s:21:\"fab fa-connectdevelop\";a:2:{s:5:\"label\";s:15:\"Connect Develop\";s:6:\"search\";a:2:{i:0;s:14:\"connectdevelop\";i:1;s:15:\"connect develop\";}}s:13:\"fab fa-contao\";a:2:{s:5:\"label\";s:6:\"Contao\";s:6:\"search\";a:1:{i:0;s:6:\"contao\";}}s:13:\"fas fa-cookie\";a:2:{s:5:\"label\";s:6:\"Cookie\";s:6:\"search\";a:9:{i:0;s:10:\"baked good\";i:1;s:5:\"chips\";i:2;s:9:\"chocolate\";i:3;s:6:\"cookie\";i:4;s:7:\"dessert\";i:5;s:3:\"eat\";i:6;s:5:\"snack\";i:7;s:5:\"sweet\";i:8;s:5:\"treat\";}}s:18:\"fas fa-cookie-bite\";a:2:{s:5:\"label\";s:11:\"Cookie Bite\";s:6:\"search\";a:10:{i:0;s:10:\"baked good\";i:1;s:6:\"bitten\";i:2;s:5:\"chips\";i:3;s:9:\"chocolate\";i:4;s:3:\"eat\";i:5;s:5:\"snack\";i:6;s:5:\"sweet\";i:7;s:5:\"treat\";i:8;s:11:\"cookie-bite\";i:9;s:11:\"cookie bite\";}}s:11:\"fas fa-copy\";a:2:{s:5:\"label\";s:12:\"Copy (solid)\";s:6:\"search\";a:7:{i:0;s:5:\"clone\";i:1;s:9:\"duplicate\";i:2;s:4:\"file\";i:3;s:7:\"files-o\";i:4;s:5:\"paper\";i:5;s:5:\"paste\";i:6;s:4:\"copy\";}}s:11:\"far fa-copy\";a:2:{s:5:\"label\";s:14:\"Copy (regular)\";s:6:\"search\";a:7:{i:0;s:5:\"clone\";i:1;s:9:\"duplicate\";i:2;s:4:\"file\";i:3;s:7:\"files-o\";i:4;s:5:\"paper\";i:5;s:5:\"paste\";i:6;s:4:\"copy\";}}s:16:\"fas fa-copyright\";a:2:{s:5:\"label\";s:17:\"Copyright (solid)\";s:6:\"search\";a:6:{i:0;s:5:\"brand\";i:1;s:1:\"c\";i:2;s:9:\"copyright\";i:3;s:4:\"mark\";i:4;s:8:\"register\";i:5;s:9:\"trademark\";}}s:16:\"far fa-copyright\";a:2:{s:5:\"label\";s:19:\"Copyright (regular)\";s:6:\"search\";a:6:{i:0;s:5:\"brand\";i:1;s:1:\"c\";i:2;s:9:\"copyright\";i:3;s:4:\"mark\";i:4;s:8:\"register\";i:5;s:9:\"trademark\";}}s:20:\"fab fa-cotton-bureau\";a:2:{s:5:\"label\";s:13:\"Cotton Bureau\";s:6:\"search\";a:5:{i:0;s:8:\"clothing\";i:1;s:8:\"t-shirts\";i:2;s:7:\"tshirts\";i:3;s:13:\"cotton-bureau\";i:4;s:13:\"cotton bureau\";}}s:12:\"fas fa-couch\";a:2:{s:5:\"label\";s:5:\"Couch\";s:6:\"search\";a:6:{i:0;s:5:\"chair\";i:1;s:7:\"cushion\";i:2;s:9:\"furniture\";i:3;s:5:\"relax\";i:4;s:4:\"sofa\";i:5;s:5:\"couch\";}}s:10:\"fas fa-cow\";a:2:{s:5:\"label\";s:3:\"Cow\";s:6:\"search\";a:12:{i:0;s:11:\"agriculture\";i:1;s:6:\"animal\";i:2;s:4:\"beef\";i:3;s:6:\"bovine\";i:4;s:2:\"co\";i:5;s:3:\"cow\";i:6;s:4:\"farm\";i:7;s:5:\"fauna\";i:8;s:9:\"livestock\";i:9;s:6:\"mammal\";i:10;s:4:\"milk\";i:11;s:3:\"moo\";}}s:13:\"fab fa-cpanel\";a:2:{s:5:\"label\";s:6:\"cPanel\";s:6:\"search\";a:1:{i:0;s:6:\"cpanel\";}}s:23:\"fab fa-creative-commons\";a:2:{s:5:\"label\";s:16:\"Creative Commons\";s:6:\"search\";a:2:{i:0;s:16:\"creative-commons\";i:1;s:16:\"creative commons\";}}s:26:\"fab fa-creative-commons-by\";a:2:{s:5:\"label\";s:28:\"Creative Commons Attribution\";s:6:\"search\";a:2:{i:0;s:19:\"creative-commons-by\";i:1;s:28:\"creative commons attribution\";}}s:26:\"fab fa-creative-commons-nc\";a:2:{s:5:\"label\";s:30:\"Creative Commons Noncommercial\";s:6:\"search\";a:2:{i:0;s:19:\"creative-commons-nc\";i:1;s:30:\"creative commons noncommercial\";}}s:29:\"fab fa-creative-commons-nc-eu\";a:2:{s:5:\"label\";s:42:\"Creative Commons Noncommercial (Euro Sign)\";s:6:\"search\";a:2:{i:0;s:22:\"creative-commons-nc-eu\";i:1;s:42:\"creative commons noncommercial (euro sign)\";}}s:29:\"fab fa-creative-commons-nc-jp\";a:2:{s:5:\"label\";s:41:\"Creative Commons Noncommercial (Yen Sign)\";s:6:\"search\";a:2:{i:0;s:22:\"creative-commons-nc-jp\";i:1;s:41:\"creative commons noncommercial (yen sign)\";}}s:26:\"fab fa-creative-commons-nd\";a:2:{s:5:\"label\";s:36:\"Creative Commons No Derivative Works\";s:6:\"search\";a:2:{i:0;s:19:\"creative-commons-nd\";i:1;s:36:\"creative commons no derivative works\";}}s:26:\"fab fa-creative-commons-pd\";a:2:{s:5:\"label\";s:30:\"Creative Commons Public Domain\";s:6:\"search\";a:2:{i:0;s:19:\"creative-commons-pd\";i:1;s:30:\"creative commons public domain\";}}s:30:\"fab fa-creative-commons-pd-alt\";a:2:{s:5:\"label\";s:40:\"Alternate Creative Commons Public Domain\";s:6:\"search\";a:2:{i:0;s:23:\"creative-commons-pd-alt\";i:1;s:40:\"alternate creative commons public domain\";}}s:29:\"fab fa-creative-commons-remix\";a:2:{s:5:\"label\";s:22:\"Creative Commons Remix\";s:6:\"search\";a:2:{i:0;s:22:\"creative-commons-remix\";i:1;s:22:\"creative commons remix\";}}s:26:\"fab fa-creative-commons-sa\";a:2:{s:5:\"label\";s:28:\"Creative Commons Share Alike\";s:6:\"search\";a:2:{i:0;s:19:\"creative-commons-sa\";i:1;s:28:\"creative commons share alike\";}}s:32:\"fab fa-creative-commons-sampling\";a:2:{s:5:\"label\";s:25:\"Creative Commons Sampling\";s:6:\"search\";a:2:{i:0;s:25:\"creative-commons-sampling\";i:1;s:25:\"creative commons sampling\";}}s:37:\"fab fa-creative-commons-sampling-plus\";a:2:{s:5:\"label\";s:27:\"Creative Commons Sampling +\";s:6:\"search\";a:2:{i:0;s:30:\"creative-commons-sampling-plus\";i:1;s:27:\"creative commons sampling +\";}}s:29:\"fab fa-creative-commons-share\";a:2:{s:5:\"label\";s:22:\"Creative Commons Share\";s:6:\"search\";a:2:{i:0;s:22:\"creative-commons-share\";i:1;s:22:\"creative commons share\";}}s:28:\"fab fa-creative-commons-zero\";a:2:{s:5:\"label\";s:20:\"Creative Commons CC0\";s:6:\"search\";a:2:{i:0;s:21:\"creative-commons-zero\";i:1;s:20:\"creative commons cc0\";}}s:18:\"fas fa-credit-card\";a:2:{s:5:\"label\";s:19:\"Credit Card (solid)\";s:6:\"search\";a:11:{i:0;s:3:\"buy\";i:1;s:4:\"card\";i:2;s:8:\"checkout\";i:3;s:6:\"credit\";i:4;s:11:\"credit card\";i:5;s:15:\"credit-card-alt\";i:6;s:5:\"debit\";i:7;s:5:\"money\";i:8;s:7:\"payment\";i:9;s:8:\"purchase\";i:10;s:11:\"credit-card\";}}s:18:\"far fa-credit-card\";a:2:{s:5:\"label\";s:21:\"Credit Card (regular)\";s:6:\"search\";a:11:{i:0;s:3:\"buy\";i:1;s:4:\"card\";i:2;s:8:\"checkout\";i:3;s:6:\"credit\";i:4;s:11:\"credit card\";i:5;s:15:\"credit-card-alt\";i:6;s:5:\"debit\";i:7;s:5:\"money\";i:8;s:7:\"payment\";i:9;s:8:\"purchase\";i:10;s:11:\"credit-card\";}}s:20:\"fab fa-critical-role\";a:2:{s:5:\"label\";s:13:\"Critical Role\";s:6:\"search\";a:9:{i:0;s:18:\"Dungeons & Dragons\";i:1;s:3:\"d&d\";i:2;s:3:\"dnd\";i:3;s:7:\"fantasy\";i:4;s:4:\"game\";i:5;s:6:\"gaming\";i:6;s:8:\"tabletop\";i:7;s:13:\"critical-role\";i:8;s:13:\"critical role\";}}s:11:\"fas fa-crop\";a:2:{s:5:\"label\";s:4:\"Crop\";s:6:\"search\";a:7:{i:0;s:6:\"design\";i:1;s:5:\"frame\";i:2;s:4:\"mask\";i:3;s:6:\"modify\";i:4;s:6:\"resize\";i:5;s:6:\"shrink\";i:6;s:4:\"crop\";}}s:18:\"fas fa-crop-simple\";a:2:{s:5:\"label\";s:11:\"Crop Simple\";s:6:\"search\";a:8:{i:0;s:6:\"design\";i:1;s:5:\"frame\";i:2;s:4:\"mask\";i:3;s:6:\"modify\";i:4;s:6:\"resize\";i:5;s:6:\"shrink\";i:6;s:11:\"crop-simple\";i:7;s:11:\"crop simple\";}}s:12:\"fas fa-cross\";a:2:{s:5:\"label\";s:5:\"Cross\";s:6:\"search\";a:9:{i:0;s:9:\"Christian\";i:1;s:17:\"Heavy Latin Cross\";i:2;s:11:\"catholicism\";i:3;s:12:\"christianity\";i:4;s:6:\"church\";i:5;s:5:\"cross\";i:6;s:5:\"jesus\";i:7;s:11:\"latin cross\";i:8;s:8:\"religion\";}}s:17:\"fas fa-crosshairs\";a:2:{s:5:\"label\";s:10:\"Crosshairs\";s:6:\"search\";a:6:{i:0;s:3:\"aim\";i:1;s:8:\"bullseye\";i:2;s:3:\"gpd\";i:3;s:6:\"picker\";i:4;s:8:\"position\";i:5;s:10:\"crosshairs\";}}s:11:\"fas fa-crow\";a:2:{s:5:\"label\";s:4:\"Crow\";s:6:\"search\";a:7:{i:0;s:4:\"bird\";i:1;s:8:\"bullfrog\";i:2;s:5:\"fauna\";i:3;s:9:\"halloween\";i:4;s:7:\"holiday\";i:5;s:4:\"toad\";i:6;s:4:\"crow\";}}s:12:\"fas fa-crown\";a:2:{s:5:\"label\";s:5:\"Crown\";s:6:\"search\";a:9:{i:0;s:5:\"award\";i:1;s:8:\"clothing\";i:2;s:5:\"crown\";i:3;s:8:\"favorite\";i:4;s:4:\"king\";i:5;s:5:\"queen\";i:6;s:5:\"royal\";i:7;s:5:\"tiara\";i:8;s:3:\"vip\";}}s:13:\"fas fa-crutch\";a:2:{s:5:\"label\";s:6:\"Crutch\";s:6:\"search\";a:5:{i:0;s:4:\"cane\";i:1;s:6:\"injury\";i:2;s:8:\"mobility\";i:3;s:10:\"wheelchair\";i:4;s:6:\"crutch\";}}s:20:\"fas fa-cruzeiro-sign\";a:2:{s:5:\"label\";s:13:\"Cruzeiro Sign\";s:6:\"search\";a:4:{i:0;s:13:\"Cruzeiro Sign\";i:1;s:8:\"currency\";i:2;s:13:\"cruzeiro-sign\";i:3;s:13:\"cruzeiro sign\";}}s:11:\"fab fa-css3\";a:2:{s:5:\"label\";s:10:\"CSS 3 Logo\";s:6:\"search\";a:3:{i:0;s:4:\"code\";i:1;s:4:\"css3\";i:2;s:10:\"css 3 logo\";}}s:15:\"fab fa-css3-alt\";a:2:{s:5:\"label\";s:19:\"Alternate CSS3 Logo\";s:6:\"search\";a:2:{i:0;s:8:\"css3-alt\";i:1;s:19:\"alternate css3 logo\";}}s:11:\"fas fa-cube\";a:2:{s:5:\"label\";s:4:\"Cube\";s:6:\"search\";a:7:{i:0;s:2:\"3d\";i:1;s:5:\"block\";i:2;s:4:\"dice\";i:3;s:7:\"package\";i:4;s:6:\"square\";i:5;s:9:\"tesseract\";i:6;s:4:\"cube\";}}s:12:\"fas fa-cubes\";a:2:{s:5:\"label\";s:5:\"Cubes\";s:6:\"search\";a:9:{i:0;s:2:\"3d\";i:1;s:5:\"block\";i:2;s:4:\"dice\";i:3;s:7:\"package\";i:4;s:7:\"pyramid\";i:5;s:6:\"square\";i:6;s:5:\"stack\";i:7;s:9:\"tesseract\";i:8;s:5:\"cubes\";}}s:20:\"fas fa-cubes-stacked\";a:2:{s:5:\"label\";s:13:\"Cubes Stacked\";s:6:\"search\";a:5:{i:0;s:6:\"blocks\";i:1;s:5:\"cubes\";i:2;s:5:\"sugar\";i:3;s:13:\"cubes-stacked\";i:4;s:13:\"cubes stacked\";}}s:17:\"fab fa-cuttlefish\";a:2:{s:5:\"label\";s:10:\"Cuttlefish\";s:6:\"search\";a:1:{i:0;s:10:\"cuttlefish\";}}s:8:\"fas fa-d\";a:2:{s:5:\"label\";s:1:\"D\";s:6:\"search\";a:4:{i:0;s:22:\"Latin Capital Letter D\";i:1;s:20:\"Latin Small Letter D\";i:2;s:6:\"letter\";i:3;s:1:\"d\";}}s:14:\"fab fa-d-and-d\";a:2:{s:5:\"label\";s:18:\"Dungeons & Dragons\";s:6:\"search\";a:2:{i:0;s:7:\"d-and-d\";i:1;s:18:\"dungeons & dragons\";}}s:21:\"fab fa-d-and-d-beyond\";a:2:{s:5:\"label\";s:10:\"D&D Beyond\";s:6:\"search\";a:8:{i:0;s:18:\"Dungeons & Dragons\";i:1;s:3:\"d&d\";i:2;s:3:\"dnd\";i:3;s:7:\"fantasy\";i:4;s:6:\"gaming\";i:5;s:8:\"tabletop\";i:6;s:14:\"d-and-d-beyond\";i:7;s:10:\"d&d beyond\";}}s:18:\"fab fa-dailymotion\";a:2:{s:5:\"label\";s:11:\"dailymotion\";s:6:\"search\";a:1:{i:0;s:11:\"dailymotion\";}}s:15:\"fab fa-dashcube\";a:2:{s:5:\"label\";s:8:\"DashCube\";s:6:\"search\";a:1:{i:0;s:8:\"dashcube\";}}s:15:\"fas fa-database\";a:2:{s:5:\"label\";s:8:\"Database\";s:6:\"search\";a:8:{i:0;s:8:\"computer\";i:1;s:11:\"development\";i:2;s:9:\"directory\";i:3;s:6:\"memory\";i:4;s:5:\"mysql\";i:5;s:3:\"sql\";i:6;s:7:\"storage\";i:7;s:8:\"database\";}}s:13:\"fab fa-debian\";a:2:{s:5:\"label\";s:6:\"Debian\";s:6:\"search\";a:1:{i:0;s:6:\"debian\";}}s:13:\"fab fa-deezer\";a:2:{s:5:\"label\";s:6:\"Deezer\";s:6:\"search\";a:1:{i:0;s:6:\"deezer\";}}s:18:\"fas fa-delete-left\";a:2:{s:5:\"label\";s:11:\"Delete Left\";s:6:\"search\";a:8:{i:0;s:17:\"Erase to the Left\";i:1;s:7:\"command\";i:2;s:6:\"delete\";i:3;s:5:\"erase\";i:4;s:8:\"keyboard\";i:5;s:4:\"undo\";i:6;s:11:\"delete-left\";i:7;s:11:\"delete left\";}}s:16:\"fab fa-delicious\";a:2:{s:5:\"label\";s:9:\"Delicious\";s:6:\"search\";a:1:{i:0;s:9:\"delicious\";}}s:15:\"fas fa-democrat\";a:2:{s:5:\"label\";s:8:\"Democrat\";s:6:\"search\";a:10:{i:0;s:8:\"american\";i:1;s:16:\"democratic party\";i:2;s:6:\"donkey\";i:3;s:8:\"election\";i:4;s:4:\"left\";i:5;s:9:\"left-wing\";i:6;s:7:\"liberal\";i:7;s:8:\"politics\";i:8;s:3:\"usa\";i:9;s:8:\"democrat\";}}s:16:\"fab fa-deploydog\";a:2:{s:5:\"label\";s:10:\"deploy.dog\";s:6:\"search\";a:2:{i:0;s:9:\"deploydog\";i:1;s:10:\"deploy.dog\";}}s:14:\"fab fa-deskpro\";a:2:{s:5:\"label\";s:7:\"Deskpro\";s:6:\"search\";a:1:{i:0;s:7:\"deskpro\";}}s:14:\"fas fa-desktop\";a:2:{s:5:\"label\";s:7:\"Desktop\";s:6:\"search\";a:11:{i:0;s:8:\"computer\";i:1;s:3:\"cpu\";i:2;s:4:\"demo\";i:3;s:7:\"desktop\";i:4;s:16:\"desktop computer\";i:5;s:6:\"device\";i:6;s:4:\"imac\";i:7;s:7:\"machine\";i:8;s:7:\"monitor\";i:9;s:2:\"pc\";i:10;s:6:\"screen\";}}s:10:\"fab fa-dev\";a:2:{s:5:\"label\";s:3:\"DEV\";s:6:\"search\";a:1:{i:0;s:3:\"dev\";}}s:17:\"fab fa-deviantart\";a:2:{s:5:\"label\";s:10:\"deviantART\";s:6:\"search\";a:1:{i:0;s:10:\"deviantart\";}}s:19:\"fas fa-dharmachakra\";a:2:{s:5:\"label\";s:12:\"Dharmachakra\";s:6:\"search\";a:8:{i:0;s:8:\"Buddhist\";i:1;s:8:\"buddhism\";i:2;s:8:\"buddhist\";i:3;s:6:\"dharma\";i:4;s:8:\"religion\";i:5;s:5:\"wheel\";i:6;s:15:\"wheel of dharma\";i:7;s:12:\"dharmachakra\";}}s:10:\"fab fa-dhl\";a:2:{s:5:\"label\";s:3:\"DHL\";s:6:\"search\";a:6:{i:0;s:6:\"Dalsey\";i:1;s:17:\"Hillblom and Lynn\";i:2;s:6:\"german\";i:3;s:7:\"package\";i:4;s:8:\"shipping\";i:5;s:3:\"dhl\";}}s:19:\"fas fa-diagram-next\";a:2:{s:5:\"label\";s:12:\"Diagram Next\";s:6:\"search\";a:9:{i:0;s:5:\"cells\";i:1;s:5:\"chart\";i:2;s:5:\"gantt\";i:3;s:3:\"row\";i:4;s:7:\"subtask\";i:5;s:9:\"successor\";i:6;s:5:\"table\";i:7;s:12:\"diagram-next\";i:8;s:12:\"diagram next\";}}s:26:\"fas fa-diagram-predecessor\";a:2:{s:5:\"label\";s:19:\"Diagram Predecessor\";s:6:\"search\";a:10:{i:0;s:5:\"cells\";i:1;s:5:\"chart\";i:2;s:5:\"gantt\";i:3;s:11:\"predecessor\";i:4;s:8:\"previous\";i:5;s:3:\"row\";i:6;s:7:\"subtask\";i:7;s:5:\"table\";i:8;s:19:\"diagram-predecessor\";i:9;s:19:\"diagram predecessor\";}}s:22:\"fas fa-diagram-project\";a:2:{s:5:\"label\";s:15:\"Diagram Project\";s:6:\"search\";a:7:{i:0;s:5:\"chart\";i:1;s:5:\"graph\";i:2;s:7:\"network\";i:3;s:4:\"pert\";i:4;s:10:\"statistics\";i:5;s:15:\"diagram-project\";i:6;s:15:\"diagram project\";}}s:24:\"fas fa-diagram-successor\";a:2:{s:5:\"label\";s:17:\"Diagram Successor\";s:6:\"search\";a:10:{i:0;s:5:\"cells\";i:1;s:5:\"chart\";i:2;s:5:\"gantt\";i:3;s:4:\"next\";i:4;s:3:\"row\";i:5;s:7:\"subtask\";i:6;s:9:\"successor\";i:7;s:5:\"table\";i:8;s:17:\"diagram-successor\";i:9;s:17:\"diagram successor\";}}s:14:\"fas fa-diamond\";a:2:{s:5:\"label\";s:7:\"Diamond\";s:6:\"search\";a:10:{i:0;s:3:\"ace\";i:1;s:4:\"card\";i:2;s:5:\"cards\";i:3;s:12:\"diamond suit\";i:4;s:4:\"game\";i:5;s:3:\"gem\";i:6;s:8:\"gemstone\";i:7;s:5:\"poker\";i:8;s:4:\"suit\";i:9;s:7:\"diamond\";}}s:25:\"fas fa-diamond-turn-right\";a:2:{s:5:\"label\";s:18:\"Diamond Turn Right\";s:6:\"search\";a:6:{i:0;s:3:\"map\";i:1;s:10:\"navigation\";i:2;s:4:\"sign\";i:3;s:4:\"turn\";i:4;s:18:\"diamond-turn-right\";i:5;s:18:\"diamond turn right\";}}s:15:\"fab fa-diaspora\";a:2:{s:5:\"label\";s:8:\"Diaspora\";s:6:\"search\";a:1:{i:0;s:8:\"diaspora\";}}s:11:\"fas fa-dice\";a:2:{s:5:\"label\";s:4:\"Dice\";s:6:\"search\";a:7:{i:0;s:6:\"chance\";i:1;s:4:\"dice\";i:2;s:3:\"die\";i:3;s:8:\"gambling\";i:4;s:4:\"game\";i:5;s:8:\"game die\";i:6;s:4:\"roll\";}}s:15:\"fas fa-dice-d20\";a:2:{s:5:\"label\";s:8:\"Dice D20\";s:6:\"search\";a:10:{i:0;s:18:\"Dungeons & Dragons\";i:1;s:6:\"chance\";i:2;s:3:\"d&d\";i:3;s:3:\"dnd\";i:4;s:7:\"fantasy\";i:5;s:8:\"gambling\";i:6;s:4:\"game\";i:7;s:4:\"roll\";i:8;s:8:\"dice-d20\";i:9;s:8:\"dice d20\";}}s:14:\"fas fa-dice-d6\";a:2:{s:5:\"label\";s:7:\"Dice D6\";s:6:\"search\";a:10:{i:0;s:18:\"Dungeons & Dragons\";i:1;s:6:\"chance\";i:2;s:3:\"d&d\";i:3;s:3:\"dnd\";i:4;s:7:\"fantasy\";i:5;s:8:\"gambling\";i:6;s:4:\"game\";i:7;s:4:\"roll\";i:8;s:7:\"dice-d6\";i:9;s:7:\"dice d6\";}}s:16:\"fas fa-dice-five\";a:2:{s:5:\"label\";s:9:\"Dice Five\";s:6:\"search\";a:7:{i:0;s:10:\"Die Face-5\";i:1;s:6:\"chance\";i:2;s:8:\"gambling\";i:3;s:4:\"game\";i:4;s:4:\"roll\";i:5;s:9:\"dice-five\";i:6;s:9:\"dice five\";}}s:16:\"fas fa-dice-four\";a:2:{s:5:\"label\";s:9:\"Dice Four\";s:6:\"search\";a:7:{i:0;s:10:\"Die Face-4\";i:1;s:6:\"chance\";i:2;s:8:\"gambling\";i:3;s:4:\"game\";i:4;s:4:\"roll\";i:5;s:9:\"dice-four\";i:6;s:9:\"dice four\";}}s:15:\"fas fa-dice-one\";a:2:{s:5:\"label\";s:8:\"Dice One\";s:6:\"search\";a:7:{i:0;s:10:\"Die Face-1\";i:1;s:6:\"chance\";i:2;s:8:\"gambling\";i:3;s:4:\"game\";i:4;s:4:\"roll\";i:5;s:8:\"dice-one\";i:6;s:8:\"dice one\";}}s:15:\"fas fa-dice-six\";a:2:{s:5:\"label\";s:8:\"Dice Six\";s:6:\"search\";a:7:{i:0;s:10:\"Die Face-6\";i:1;s:6:\"chance\";i:2;s:8:\"gambling\";i:3;s:4:\"game\";i:4;s:4:\"roll\";i:5;s:8:\"dice-six\";i:6;s:8:\"dice six\";}}s:17:\"fas fa-dice-three\";a:2:{s:5:\"label\";s:10:\"Dice Three\";s:6:\"search\";a:7:{i:0;s:10:\"Die Face-3\";i:1;s:6:\"chance\";i:2;s:8:\"gambling\";i:3;s:4:\"game\";i:4;s:4:\"roll\";i:5;s:10:\"dice-three\";i:6;s:10:\"dice three\";}}s:15:\"fas fa-dice-two\";a:2:{s:5:\"label\";s:8:\"Dice Two\";s:6:\"search\";a:7:{i:0;s:10:\"Die Face-2\";i:1;s:6:\"chance\";i:2;s:8:\"gambling\";i:3;s:4:\"game\";i:4;s:4:\"roll\";i:5;s:8:\"dice-two\";i:6;s:8:\"dice two\";}}s:11:\"fab fa-digg\";a:2:{s:5:\"label\";s:9:\"Digg Logo\";s:6:\"search\";a:2:{i:0;s:4:\"digg\";i:1;s:9:\"digg logo\";}}s:20:\"fab fa-digital-ocean\";a:2:{s:5:\"label\";s:13:\"Digital Ocean\";s:6:\"search\";a:2:{i:0;s:13:\"digital-ocean\";i:1;s:13:\"digital ocean\";}}s:14:\"fab fa-discord\";a:2:{s:5:\"label\";s:7:\"Discord\";s:6:\"search\";a:1:{i:0;s:7:\"discord\";}}s:16:\"fab fa-discourse\";a:2:{s:5:\"label\";s:9:\"Discourse\";s:6:\"search\";a:1:{i:0;s:9:\"discourse\";}}s:14:\"fas fa-disease\";a:2:{s:5:\"label\";s:7:\"Disease\";s:6:\"search\";a:11:{i:0;s:8:\"bacteria\";i:1;s:6:\"cancer\";i:2;s:11:\"coronavirus\";i:3;s:8:\"covid-19\";i:4;s:3:\"flu\";i:5;s:7:\"illness\";i:6;s:9:\"infection\";i:7;s:8:\"pandemic\";i:8;s:8:\"sickness\";i:9;s:5:\"virus\";i:10;s:7:\"disease\";}}s:14:\"fas fa-display\";a:2:{s:5:\"label\";s:7:\"Display\";s:6:\"search\";a:5:{i:0;s:6:\"Screen\";i:1;s:8:\"computer\";i:2;s:7:\"desktop\";i:3;s:4:\"imac\";i:4;s:7:\"display\";}}s:13:\"fas fa-divide\";a:2:{s:5:\"label\";s:6:\"Divide\";s:6:\"search\";a:8:{i:0;s:13:\"Division Sign\";i:1;s:10:\"arithmetic\";i:2;s:8:\"calculus\";i:3;s:6:\"divide\";i:4;s:8:\"division\";i:5;s:4:\"math\";i:6;s:4:\"sign\";i:7;s:2:\"÷\";}}s:10:\"fas fa-dna\";a:2:{s:5:\"label\";s:3:\"Dna\";s:6:\"search\";a:11:{i:0;s:9:\"biologist\";i:1;s:3:\"dna\";i:2;s:12:\"double helix\";i:3;s:9:\"evolution\";i:4;s:4:\"gene\";i:5;s:7:\"genetic\";i:6;s:8:\"genetics\";i:7;s:5:\"helix\";i:8;s:4:\"life\";i:9;s:8:\"molecule\";i:10;s:7:\"protein\";}}s:13:\"fab fa-dochub\";a:2:{s:5:\"label\";s:6:\"DocHub\";s:6:\"search\";a:1:{i:0;s:6:\"dochub\";}}s:13:\"fab fa-docker\";a:2:{s:5:\"label\";s:6:\"Docker\";s:6:\"search\";a:1:{i:0;s:6:\"docker\";}}s:10:\"fas fa-dog\";a:2:{s:5:\"label\";s:3:\"Dog\";s:6:\"search\";a:9:{i:0;s:6:\"animal\";i:1;s:6:\"canine\";i:2;s:3:\"dog\";i:3;s:5:\"fauna\";i:4;s:6:\"mammal\";i:5;s:3:\"pet\";i:6;s:5:\"pooch\";i:7;s:5:\"puppy\";i:8;s:4:\"woof\";}}s:18:\"fas fa-dollar-sign\";a:2:{s:5:\"label\";s:11:\"Dollar Sign\";s:6:\"search\";a:12:{i:0;s:11:\"Dollar Sign\";i:1;s:6:\"coupon\";i:2;s:8:\"currency\";i:3;s:6:\"dollar\";i:4;s:17:\"heavy dollar sign\";i:5;s:10:\"investment\";i:6;s:5:\"money\";i:7;s:7:\"premium\";i:8;s:7:\"revenue\";i:9;s:6:\"salary\";i:10;s:11:\"dollar-sign\";i:11;s:11:\"dollar sign\";}}s:12:\"fas fa-dolly\";a:2:{s:5:\"label\";s:5:\"Dolly\";s:6:\"search\";a:4:{i:0;s:5:\"carry\";i:1;s:8:\"shipping\";i:2;s:9:\"transport\";i:3;s:5:\"dolly\";}}s:16:\"fas fa-dong-sign\";a:2:{s:5:\"label\";s:9:\"Dong Sign\";s:6:\"search\";a:4:{i:0;s:9:\"Dong Sign\";i:1;s:8:\"currency\";i:2;s:9:\"dong-sign\";i:3;s:9:\"dong sign\";}}s:18:\"fas fa-door-closed\";a:2:{s:5:\"label\";s:11:\"Door Closed\";s:6:\"search\";a:8:{i:0;s:3:\"doo\";i:1;s:4:\"door\";i:2;s:5:\"enter\";i:3;s:4:\"exit\";i:4;s:6:\"locked\";i:5;s:7:\"privacy\";i:6;s:11:\"door-closed\";i:7;s:11:\"door closed\";}}s:16:\"fas fa-door-open\";a:2:{s:5:\"label\";s:9:\"Door Open\";s:6:\"search\";a:5:{i:0;s:5:\"enter\";i:1;s:4:\"exit\";i:2;s:7:\"welcome\";i:3;s:9:\"door-open\";i:4;s:9:\"door open\";}}s:11:\"fas fa-dove\";a:2:{s:5:\"label\";s:4:\"Dove\";s:6:\"search\";a:7:{i:0;s:4:\"bird\";i:1;s:4:\"dove\";i:2;s:5:\"fauna\";i:3;s:3:\"fly\";i:4;s:6:\"flying\";i:5;s:5:\"peace\";i:6;s:3:\"war\";}}s:39:\"fas fa-down-left-and-up-right-to-center\";a:2:{s:5:\"label\";s:32:\"Down Left And Up Right To Center\";s:6:\"search\";a:11:{i:0;s:6:\" scale\";i:1;s:8:\"collapse\";i:2;s:10:\"fullscreen\";i:3;s:8:\"minimize\";i:4;s:4:\"move\";i:5;s:6:\"resize\";i:6;s:6:\"shrink\";i:7;s:4:\"size\";i:8;s:7:\"smaller\";i:9;s:32:\"down-left-and-up-right-to-center\";i:10;s:32:\"down left and up right to center\";}}s:16:\"fas fa-down-long\";a:2:{s:5:\"label\";s:9:\"Down Long\";s:6:\"search\";a:4:{i:0;s:8:\"download\";i:1;s:15:\"long-arrow-down\";i:2;s:9:\"down-long\";i:3;s:9:\"down long\";}}s:15:\"fas fa-download\";a:2:{s:5:\"label\";s:8:\"Download\";s:6:\"search\";a:6:{i:0;s:6:\"export\";i:1;s:10:\"hard drive\";i:2;s:6:\"insert\";i:3;s:4:\"save\";i:4;s:8:\"transfer\";i:5;s:8:\"download\";}}s:20:\"fab fa-draft2digital\";a:2:{s:5:\"label\";s:13:\"Draft2digital\";s:6:\"search\";a:1:{i:0;s:13:\"draft2digital\";}}s:13:\"fas fa-dragon\";a:2:{s:5:\"label\";s:6:\"Dragon\";s:6:\"search\";a:9:{i:0;s:18:\"Dungeons & Dragons\";i:1;s:3:\"d&d\";i:2;s:3:\"dnd\";i:3;s:6:\"dragon\";i:4;s:10:\"fairy tale\";i:5;s:7:\"fantasy\";i:6;s:4:\"fire\";i:7;s:6:\"lizard\";i:8;s:7:\"serpent\";}}s:19:\"fas fa-draw-polygon\";a:2:{s:5:\"label\";s:12:\"Draw Polygon\";s:6:\"search\";a:7:{i:0;s:7:\"anchors\";i:1;s:5:\"lines\";i:2;s:6:\"object\";i:3;s:6:\"render\";i:4;s:5:\"shape\";i:5;s:12:\"draw-polygon\";i:6;s:12:\"draw polygon\";}}s:15:\"fab fa-dribbble\";a:2:{s:5:\"label\";s:8:\"Dribbble\";s:6:\"search\";a:1:{i:0;s:8:\"dribbble\";}}s:14:\"fab fa-dropbox\";a:2:{s:5:\"label\";s:7:\"Dropbox\";s:6:\"search\";a:1:{i:0;s:7:\"dropbox\";}}s:14:\"fas fa-droplet\";a:2:{s:5:\"label\";s:7:\"Droplet\";s:6:\"search\";a:9:{i:0;s:5:\"blood\";i:1;s:4:\"cold\";i:2;s:5:\"color\";i:3;s:5:\"comic\";i:4;s:4:\"drop\";i:5;s:7:\"droplet\";i:6;s:8:\"raindrop\";i:7;s:5:\"sweat\";i:8;s:9:\"waterdrop\";}}s:20:\"fas fa-droplet-slash\";a:2:{s:5:\"label\";s:13:\"Droplet Slash\";s:6:\"search\";a:9:{i:0;s:5:\"blood\";i:1;s:5:\"color\";i:2;s:8:\"disabled\";i:3;s:4:\"drop\";i:4;s:7:\"droplet\";i:5;s:8:\"raindrop\";i:6;s:9:\"waterdrop\";i:7;s:13:\"droplet-slash\";i:8;s:13:\"droplet slash\";}}s:11:\"fas fa-drum\";a:2:{s:5:\"label\";s:4:\"Drum\";s:6:\"search\";a:7:{i:0;s:4:\"drum\";i:1;s:10:\"drumsticks\";i:2;s:10:\"instrument\";i:3;s:5:\"music\";i:4;s:10:\"percussion\";i:5;s:5:\"snare\";i:6;s:5:\"sound\";}}s:20:\"fas fa-drum-steelpan\";a:2:{s:5:\"label\";s:13:\"Drum Steelpan\";s:6:\"search\";a:11:{i:0;s:7:\"calypso\";i:1;s:10:\"instrument\";i:2;s:5:\"music\";i:3;s:10:\"percussion\";i:4;s:6:\"reggae\";i:5;s:5:\"snare\";i:6;s:5:\"sound\";i:7;s:5:\"steel\";i:8;s:8:\"tropical\";i:9;s:13:\"drum-steelpan\";i:10;s:13:\"drum steelpan\";}}s:21:\"fas fa-drumstick-bite\";a:2:{s:5:\"label\";s:14:\"Drumstick Bite\";s:6:\"search\";a:8:{i:0;s:4:\"bone\";i:1;s:7:\"chicken\";i:2;s:3:\"leg\";i:3;s:4:\"meat\";i:4;s:7:\"poultry\";i:5;s:6:\"turkey\";i:6;s:14:\"drumstick-bite\";i:7;s:14:\"drumstick bite\";}}s:13:\"fab fa-drupal\";a:2:{s:5:\"label\";s:11:\"Drupal Logo\";s:6:\"search\";a:2:{i:0;s:6:\"drupal\";i:1;s:11:\"drupal logo\";}}s:15:\"fas fa-dumbbell\";a:2:{s:5:\"label\";s:8:\"Dumbbell\";s:6:\"search\";a:7:{i:0;s:8:\"exercise\";i:1;s:3:\"gym\";i:2;s:8:\"strength\";i:3;s:6:\"weight\";i:4;s:14:\"weight-lifting\";i:5;s:7:\"workout\";i:6;s:8:\"dumbbell\";}}s:15:\"fas fa-dumpster\";a:2:{s:5:\"label\";s:8:\"Dumpster\";s:6:\"search\";a:6:{i:0;s:5:\"alley\";i:1;s:3:\"bin\";i:2;s:10:\"commercial\";i:3;s:5:\"trash\";i:4;s:5:\"waste\";i:5;s:8:\"dumpster\";}}s:20:\"fas fa-dumpster-fire\";a:2:{s:5:\"label\";s:13:\"Dumpster Fire\";s:6:\"search\";a:13:{i:0;s:5:\"alley\";i:1;s:3:\"bin\";i:2;s:10:\"commercial\";i:3;s:6:\"danger\";i:4;s:9:\"dangerous\";i:5;s:9:\"euphemism\";i:6;s:5:\"flame\";i:7;s:4:\"heat\";i:8;s:3:\"hot\";i:9;s:5:\"trash\";i:10;s:5:\"waste\";i:11;s:13:\"dumpster-fire\";i:12;s:13:\"dumpster fire\";}}s:14:\"fas fa-dungeon\";a:2:{s:5:\"label\";s:7:\"Dungeon\";s:6:\"search\";a:9:{i:0;s:18:\"Dungeons & Dragons\";i:1;s:8:\"building\";i:2;s:3:\"d&d\";i:3;s:3:\"dnd\";i:4;s:4:\"door\";i:5;s:8:\"entrance\";i:6;s:7:\"fantasy\";i:7;s:4:\"gate\";i:8;s:7:\"dungeon\";}}s:13:\"fab fa-dyalog\";a:2:{s:5:\"label\";s:6:\"Dyalog\";s:6:\"search\";a:1:{i:0;s:6:\"dyalog\";}}s:8:\"fas fa-e\";a:2:{s:5:\"label\";s:1:\"E\";s:6:\"search\";a:4:{i:0;s:22:\"Latin Capital Letter E\";i:1;s:20:\"Latin Small Letter E\";i:2;s:6:\"letter\";i:3;s:1:\"e\";}}s:15:\"fas fa-ear-deaf\";a:2:{s:5:\"label\";s:8:\"Ear Deaf\";s:6:\"search\";a:5:{i:0;s:3:\"ear\";i:1;s:7:\"hearing\";i:2;s:13:\"sign language\";i:3;s:8:\"ear-deaf\";i:4;s:8:\"ear deaf\";}}s:17:\"fas fa-ear-listen\";a:2:{s:5:\"label\";s:10:\"Ear Listen\";s:6:\"search\";a:9:{i:0;s:7:\"amplify\";i:1;s:5:\"audio\";i:2;s:4:\"deaf\";i:3;s:3:\"ear\";i:4;s:7:\"headset\";i:5;s:7:\"hearing\";i:6;s:5:\"sound\";i:7;s:10:\"ear-listen\";i:8;s:10:\"ear listen\";}}s:17:\"fab fa-earlybirds\";a:2:{s:5:\"label\";s:10:\"Earlybirds\";s:6:\"search\";a:1:{i:0;s:10:\"earlybirds\";}}s:19:\"fas fa-earth-africa\";a:2:{s:5:\"label\";s:12:\"Earth Africa\";s:6:\"search\";a:20:{i:0;s:6:\"africa\";i:1;s:3:\"all\";i:2;s:7:\"country\";i:3;s:5:\"earth\";i:4;s:6:\"europe\";i:5;s:6:\"global\";i:6;s:5:\"globe\";i:7;s:3:\"gps\";i:8;s:8:\"language\";i:9;s:8:\"localize\";i:10;s:8:\"location\";i:11;s:3:\"map\";i:12;s:6:\"online\";i:13;s:5:\"place\";i:14;s:6:\"planet\";i:15;s:9:\"translate\";i:16;s:6:\"travel\";i:17;s:5:\"world\";i:18;s:12:\"earth-africa\";i:19;s:12:\"earth africa\";}}s:21:\"fas fa-earth-americas\";a:2:{s:5:\"label\";s:14:\"Earth Americas\";s:6:\"search\";a:19:{i:0;s:3:\"all\";i:1;s:7:\"america\";i:2;s:7:\"country\";i:3;s:5:\"earth\";i:4;s:6:\"global\";i:5;s:5:\"globe\";i:6;s:3:\"gps\";i:7;s:8:\"language\";i:8;s:8:\"localize\";i:9;s:8:\"location\";i:10;s:3:\"map\";i:11;s:6:\"online\";i:12;s:5:\"place\";i:13;s:6:\"planet\";i:14;s:9:\"translate\";i:15;s:6:\"travel\";i:16;s:5:\"world\";i:17;s:14:\"earth-americas\";i:18;s:14:\"earth americas\";}}s:17:\"fas fa-earth-asia\";a:2:{s:5:\"label\";s:10:\"Earth Asia\";s:6:\"search\";a:20:{i:0;s:3:\"all\";i:1;s:4:\"asia\";i:2;s:9:\"australia\";i:3;s:7:\"country\";i:4;s:5:\"earth\";i:5;s:6:\"global\";i:6;s:5:\"globe\";i:7;s:3:\"gps\";i:8;s:8:\"language\";i:9;s:8:\"localize\";i:10;s:8:\"location\";i:11;s:3:\"map\";i:12;s:6:\"online\";i:13;s:5:\"place\";i:14;s:6:\"planet\";i:15;s:9:\"translate\";i:16;s:6:\"travel\";i:17;s:5:\"world\";i:18;s:10:\"earth-asia\";i:19;s:10:\"earth asia\";}}s:19:\"fas fa-earth-europe\";a:2:{s:5:\"label\";s:12:\"Earth Europe\";s:6:\"search\";a:19:{i:0;s:3:\"all\";i:1;s:7:\"country\";i:2;s:5:\"earth\";i:3;s:6:\"europe\";i:4;s:6:\"global\";i:5;s:5:\"globe\";i:6;s:3:\"gps\";i:7;s:8:\"language\";i:8;s:8:\"localize\";i:9;s:8:\"location\";i:10;s:3:\"map\";i:11;s:6:\"online\";i:12;s:5:\"place\";i:13;s:6:\"planet\";i:14;s:9:\"translate\";i:15;s:6:\"travel\";i:16;s:5:\"world\";i:17;s:12:\"earth-europe\";i:18;s:12:\"earth europe\";}}s:20:\"fas fa-earth-oceania\";a:2:{s:5:\"label\";s:13:\"Earth Oceania\";s:6:\"search\";a:23:{i:0;s:3:\"all\";i:1;s:9:\"australia\";i:2;s:7:\"country\";i:3;s:5:\"earth\";i:4;s:6:\"global\";i:5;s:5:\"globe\";i:6;s:3:\"gps\";i:7;s:8:\"language\";i:8;s:8:\"localize\";i:9;s:8:\"location\";i:10;s:3:\"map\";i:11;s:9:\"melanesia\";i:12;s:10:\"micronesia\";i:13;s:11:\"new zealand\";i:14;s:6:\"online\";i:15;s:5:\"place\";i:16;s:6:\"planet\";i:17;s:9:\"polynesia\";i:18;s:9:\"translate\";i:19;s:6:\"travel\";i:20;s:5:\"world\";i:21;s:13:\"earth-oceania\";i:22;s:13:\"earth oceania\";}}s:11:\"fab fa-ebay\";a:2:{s:5:\"label\";s:4:\"eBay\";s:6:\"search\";a:1:{i:0;s:4:\"ebay\";}}s:11:\"fab fa-edge\";a:2:{s:5:\"label\";s:12:\"Edge Browser\";s:6:\"search\";a:4:{i:0;s:7:\"browser\";i:1;s:2:\"ie\";i:2;s:4:\"edge\";i:3;s:12:\"edge browser\";}}s:18:\"fab fa-edge-legacy\";a:2:{s:5:\"label\";s:19:\"Edge Legacy Browser\";s:6:\"search\";a:2:{i:0;s:11:\"edge-legacy\";i:1;s:19:\"edge legacy browser\";}}s:10:\"fas fa-egg\";a:2:{s:5:\"label\";s:3:\"Egg\";s:6:\"search\";a:7:{i:0;s:9:\"breakfast\";i:1;s:7:\"chicken\";i:2;s:6:\"easter\";i:3;s:3:\"egg\";i:4;s:4:\"food\";i:5;s:5:\"shell\";i:6;s:4:\"yolk\";}}s:12:\"fas fa-eject\";a:2:{s:5:\"label\";s:5:\"Eject\";s:6:\"search\";a:6:{i:0;s:5:\"abort\";i:1;s:6:\"cancel\";i:2;s:2:\"cd\";i:3;s:9:\"discharge\";i:4;s:5:\"eject\";i:5;s:12:\"eject button\";}}s:16:\"fab fa-elementor\";a:2:{s:5:\"label\";s:9:\"Elementor\";s:6:\"search\";a:1:{i:0;s:9:\"elementor\";}}s:15:\"fas fa-elevator\";a:2:{s:5:\"label\";s:8:\"Elevator\";s:6:\"search\";a:6:{i:0;s:13:\"accessibility\";i:1;s:8:\"elevator\";i:2;s:5:\"hoist\";i:3;s:4:\"lift\";i:4;s:3:\"uer\";i:5;s:12:\"users-people\";}}s:15:\"fas fa-ellipsis\";a:2:{s:5:\"label\";s:8:\"Ellipsis\";s:6:\"search\";a:14:{i:0;s:4:\"dots\";i:1;s:4:\"drag\";i:2;s:5:\"kebab\";i:3;s:4:\"list\";i:4;s:4:\"menu\";i:5;s:3:\"nav\";i:6;s:10:\"navigation\";i:7;s:2:\"ol\";i:8;s:6:\"pacman\";i:9;s:7:\"reorder\";i:10;s:8:\"settings\";i:11;s:10:\"three dots\";i:12;s:2:\"ul\";i:13;s:8:\"ellipsis\";}}s:24:\"fas fa-ellipsis-vertical\";a:2:{s:5:\"label\";s:17:\"Ellipsis Vertical\";s:6:\"search\";a:15:{i:0;s:6:\"bullet\";i:1;s:4:\"dots\";i:2;s:4:\"drag\";i:3;s:5:\"kebab\";i:4;s:4:\"list\";i:5;s:4:\"menu\";i:6;s:3:\"nav\";i:7;s:10:\"navigation\";i:8;s:2:\"ol\";i:9;s:7:\"reorder\";i:10;s:8:\"settings\";i:11;s:10:\"three dots\";i:12;s:2:\"ul\";i:13;s:17:\"ellipsis-vertical\";i:14;s:17:\"ellipsis vertical\";}}s:11:\"fab fa-ello\";a:2:{s:5:\"label\";s:4:\"Ello\";s:6:\"search\";a:1:{i:0;s:4:\"ello\";}}s:12:\"fab fa-ember\";a:2:{s:5:\"label\";s:5:\"Ember\";s:6:\"search\";a:1:{i:0;s:5:\"ember\";}}s:13:\"fab fa-empire\";a:2:{s:5:\"label\";s:15:\"Galactic Empire\";s:6:\"search\";a:2:{i:0;s:6:\"empire\";i:1;s:15:\"galactic empire\";}}s:15:\"fas fa-envelope\";a:2:{s:5:\"label\";s:16:\"Envelope (solid)\";s:6:\"search\";a:11:{i:0;s:16:\"Back of Envelope\";i:1;s:6:\"e-mail\";i:2;s:5:\"email\";i:3;s:8:\"envelope\";i:4;s:6:\"letter\";i:5;s:4:\"mail\";i:6;s:7:\"message\";i:7;s:10:\"newsletter\";i:8;s:12:\"notification\";i:9;s:5:\"offer\";i:10;s:7:\"support\";}}s:15:\"far fa-envelope\";a:2:{s:5:\"label\";s:18:\"Envelope (regular)\";s:6:\"search\";a:11:{i:0;s:16:\"Back of Envelope\";i:1;s:6:\"e-mail\";i:2;s:5:\"email\";i:3;s:8:\"envelope\";i:4;s:6:\"letter\";i:5;s:4:\"mail\";i:6;s:7:\"message\";i:7;s:10:\"newsletter\";i:8;s:12:\"notification\";i:9;s:5:\"offer\";i:10;s:7:\"support\";}}s:28:\"fas fa-envelope-circle-check\";a:2:{s:5:\"label\";s:21:\"Envelope Circle Check\";s:6:\"search\";a:14:{i:0;s:5:\"check\";i:1;s:5:\"email\";i:2;s:6:\"enable\";i:3;s:8:\"envelope\";i:4;s:4:\"mail\";i:5;s:12:\"not affected\";i:6;s:2:\"ok\";i:7;s:4:\"okay\";i:8;s:4:\"read\";i:9;s:4:\"sent\";i:10;s:8:\"validate\";i:11;s:7:\"working\";i:12;s:21:\"envelope-circle-check\";i:13;s:21:\"envelope circle check\";}}s:20:\"fas fa-envelope-open\";a:2:{s:5:\"label\";s:21:\"Envelope Open (solid)\";s:6:\"search\";a:11:{i:0;s:6:\"e-mail\";i:1;s:5:\"email\";i:2;s:6:\"letter\";i:3;s:4:\"mail\";i:4;s:7:\"message\";i:5;s:10:\"newsletter\";i:6;s:12:\"notification\";i:7;s:5:\"offer\";i:8;s:7:\"support\";i:9;s:13:\"envelope-open\";i:10;s:13:\"envelope open\";}}s:20:\"far fa-envelope-open\";a:2:{s:5:\"label\";s:23:\"Envelope Open (regular)\";s:6:\"search\";a:11:{i:0;s:6:\"e-mail\";i:1;s:5:\"email\";i:2;s:6:\"letter\";i:3;s:4:\"mail\";i:4;s:7:\"message\";i:5;s:10:\"newsletter\";i:6;s:12:\"notification\";i:7;s:5:\"offer\";i:8;s:7:\"support\";i:9;s:13:\"envelope-open\";i:10;s:13:\"envelope open\";}}s:25:\"fas fa-envelope-open-text\";a:2:{s:5:\"label\";s:18:\"Envelope Open Text\";s:6:\"search\";a:11:{i:0;s:6:\"e-mail\";i:1;s:5:\"email\";i:2;s:6:\"letter\";i:3;s:4:\"mail\";i:4;s:7:\"message\";i:5;s:10:\"newsletter\";i:6;s:12:\"notification\";i:7;s:5:\"offer\";i:8;s:7:\"support\";i:9;s:18:\"envelope-open-text\";i:10;s:18:\"envelope open text\";}}s:21:\"fas fa-envelopes-bulk\";a:2:{s:5:\"label\";s:14:\"Envelopes Bulk\";s:6:\"search\";a:13:{i:0;s:7:\"archive\";i:1;s:8:\"envelope\";i:2;s:6:\"letter\";i:3;s:10:\"newsletter\";i:4;s:5:\"offer\";i:5;s:11:\"post office\";i:6;s:6:\"postal\";i:7;s:8:\"postcard\";i:8;s:4:\"send\";i:9;s:5:\"stamp\";i:10;s:4:\"usps\";i:11;s:14:\"envelopes-bulk\";i:12;s:14:\"envelopes bulk\";}}s:13:\"fab fa-envira\";a:2:{s:5:\"label\";s:14:\"Envira Gallery\";s:6:\"search\";a:3:{i:0;s:4:\"leaf\";i:1;s:6:\"envira\";i:2;s:14:\"envira gallery\";}}s:13:\"fas fa-equals\";a:2:{s:5:\"label\";s:6:\"Equals\";s:6:\"search\";a:6:{i:0;s:11:\"Equals Sign\";i:1;s:10:\"arithmetic\";i:2;s:4:\"even\";i:3;s:5:\"match\";i:4;s:4:\"math\";i:5;s:6:\"equals\";}}s:13:\"fas fa-eraser\";a:2:{s:5:\"label\";s:6:\"Eraser\";s:6:\"search\";a:5:{i:0;s:3:\"art\";i:1;s:6:\"delete\";i:2;s:6:\"remove\";i:3;s:6:\"rubber\";i:4;s:6:\"eraser\";}}s:13:\"fab fa-erlang\";a:2:{s:5:\"label\";s:6:\"Erlang\";s:6:\"search\";a:1:{i:0;s:6:\"erlang\";}}s:15:\"fab fa-ethereum\";a:2:{s:5:\"label\";s:8:\"Ethereum\";s:6:\"search\";a:1:{i:0;s:8:\"ethereum\";}}s:15:\"fas fa-ethernet\";a:2:{s:5:\"label\";s:8:\"Ethernet\";s:6:\"search\";a:9:{i:0;s:5:\"cable\";i:1;s:5:\"cat 5\";i:2;s:5:\"cat 6\";i:3;s:10:\"connection\";i:4;s:8:\"hardware\";i:5;s:8:\"internet\";i:6;s:7:\"network\";i:7;s:5:\"wired\";i:8;s:8:\"ethernet\";}}s:11:\"fab fa-etsy\";a:2:{s:5:\"label\";s:4:\"Etsy\";s:6:\"search\";a:1:{i:0;s:4:\"etsy\";}}s:16:\"fas fa-euro-sign\";a:2:{s:5:\"label\";s:9:\"Euro Sign\";s:6:\"search\";a:4:{i:0;s:9:\"Euro Sign\";i:1;s:8:\"currency\";i:2;s:9:\"euro-sign\";i:3;s:9:\"euro sign\";}}s:15:\"fab fa-evernote\";a:2:{s:5:\"label\";s:8:\"Evernote\";s:6:\"search\";a:1:{i:0;s:8:\"evernote\";}}s:18:\"fas fa-exclamation\";a:2:{s:5:\"label\";s:11:\"Exclamation\";s:6:\"search\";a:20:{i:0;s:1:\"!\";i:1;s:16:\"Exclamation Mark\";i:2;s:5:\"alert\";i:3;s:9:\"attention\";i:4;s:6:\"danger\";i:5;s:5:\"error\";i:6;s:11:\"exclamation\";i:7;s:6:\"failed\";i:8;s:9:\"important\";i:9;s:4:\"mark\";i:10;s:6:\"notice\";i:11;s:12:\"notification\";i:12;s:6:\"notify\";i:13;s:8:\"outlined\";i:14;s:7:\"problem\";i:15;s:11:\"punctuation\";i:16;s:20:\"red exclamation mark\";i:17;s:8:\"required\";i:18;s:7:\"warning\";i:19;s:22:\"white exclamation mark\";}}s:13:\"fas fa-expand\";a:2:{s:5:\"label\";s:6:\"Expand\";s:6:\"search\";a:11:{i:0;s:10:\" maximize\";i:1;s:8:\" resize\";i:2;s:7:\" scale\";i:3;s:7:\" arrows\";i:4;s:7:\" bigger\";i:5;s:8:\" enlarge\";i:6;s:11:\" fullscreen\";i:7;s:7:\" resize\";i:8;s:5:\" size\";i:9;s:6:\"expand\";i:10;s:10:\"viewfinder\";}}s:19:\"fab fa-expeditedssl\";a:2:{s:5:\"label\";s:12:\"ExpeditedSSL\";s:6:\"search\";a:1:{i:0;s:12:\"expeditedssl\";}}s:16:\"fas fa-explosion\";a:2:{s:5:\"label\";s:9:\"Explosion\";s:6:\"search\";a:6:{i:0;s:5:\"blast\";i:1;s:6:\"blowup\";i:2;s:4:\"boom\";i:3;s:5:\"crash\";i:4;s:10:\"detonation\";i:5;s:9:\"explosion\";}}s:10:\"fas fa-eye\";a:2:{s:5:\"label\";s:11:\"Eye (solid)\";s:6:\"search\";a:10:{i:0;s:4:\"body\";i:1;s:3:\"eye\";i:2;s:4:\"look\";i:3;s:5:\"optic\";i:4;s:3:\"see\";i:5;s:4:\"seen\";i:6;s:4:\"show\";i:7;s:5:\"sight\";i:8;s:5:\"views\";i:9;s:7:\"visible\";}}s:10:\"far fa-eye\";a:2:{s:5:\"label\";s:13:\"Eye (regular)\";s:6:\"search\";a:10:{i:0;s:4:\"body\";i:1;s:3:\"eye\";i:2;s:4:\"look\";i:3;s:5:\"optic\";i:4;s:3:\"see\";i:5;s:4:\"seen\";i:6;s:4:\"show\";i:7;s:5:\"sight\";i:8;s:5:\"views\";i:9;s:7:\"visible\";}}s:18:\"fas fa-eye-dropper\";a:2:{s:5:\"label\";s:11:\"Eye Dropper\";s:6:\"search\";a:8:{i:0;s:6:\"beaker\";i:1;s:5:\"clone\";i:2;s:5:\"color\";i:3;s:4:\"copy\";i:4;s:10:\"eyedropper\";i:5;s:7:\"pipette\";i:6;s:11:\"eye-dropper\";i:7;s:11:\"eye dropper\";}}s:21:\"fas fa-eye-low-vision\";a:2:{s:5:\"label\";s:14:\"Eye Low Vision\";s:6:\"search\";a:5:{i:0;s:5:\"blind\";i:1;s:3:\"eye\";i:2;s:5:\"sight\";i:3;s:14:\"eye-low-vision\";i:4;s:14:\"eye low vision\";}}s:16:\"fas fa-eye-slash\";a:2:{s:5:\"label\";s:17:\"Eye Slash (solid)\";s:6:\"search\";a:11:{i:0;s:5:\"blind\";i:1;s:8:\"disabled\";i:2;s:4:\"hide\";i:3;s:4:\"show\";i:4;s:6:\"toggle\";i:5;s:6:\"unseen\";i:6;s:5:\"views\";i:7;s:7:\"visible\";i:8;s:9:\"visiblity\";i:9;s:9:\"eye-slash\";i:10;s:9:\"eye slash\";}}s:16:\"far fa-eye-slash\";a:2:{s:5:\"label\";s:19:\"Eye Slash (regular)\";s:6:\"search\";a:11:{i:0;s:5:\"blind\";i:1;s:8:\"disabled\";i:2;s:4:\"hide\";i:3;s:4:\"show\";i:4;s:6:\"toggle\";i:5;s:6:\"unseen\";i:6;s:5:\"views\";i:7;s:7:\"visible\";i:8;s:9:\"visiblity\";i:9;s:9:\"eye-slash\";i:10;s:9:\"eye slash\";}}s:8:\"fas fa-f\";a:2:{s:5:\"label\";s:1:\"F\";s:6:\"search\";a:4:{i:0;s:22:\"Latin Capital Letter F\";i:1;s:20:\"Latin Small Letter F\";i:2;s:6:\"letter\";i:3;s:1:\"f\";}}s:17:\"fas fa-face-angry\";a:2:{s:5:\"label\";s:18:\"Face Angry (solid)\";s:6:\"search\";a:9:{i:0;s:5:\"angry\";i:1;s:10:\"angry face\";i:2;s:10:\"disapprove\";i:3;s:8:\"emoticon\";i:4;s:4:\"face\";i:5;s:3:\"mad\";i:6;s:5:\"upset\";i:7;s:10:\"face-angry\";i:8;s:10:\"face angry\";}}s:17:\"far fa-face-angry\";a:2:{s:5:\"label\";s:20:\"Face Angry (regular)\";s:6:\"search\";a:9:{i:0;s:5:\"angry\";i:1;s:10:\"angry face\";i:2;s:10:\"disapprove\";i:3;s:8:\"emoticon\";i:4;s:4:\"face\";i:5;s:3:\"mad\";i:6;s:5:\"upset\";i:7;s:10:\"face-angry\";i:8;s:10:\"face angry\";}}s:17:\"fas fa-face-dizzy\";a:2:{s:5:\"label\";s:18:\"Face Dizzy (solid)\";s:6:\"search\";a:7:{i:0;s:5:\"dazed\";i:1;s:4:\"dead\";i:2;s:10:\"disapprove\";i:3;s:8:\"emoticon\";i:4;s:4:\"face\";i:5;s:10:\"face-dizzy\";i:6;s:10:\"face dizzy\";}}s:17:\"far fa-face-dizzy\";a:2:{s:5:\"label\";s:20:\"Face Dizzy (regular)\";s:6:\"search\";a:7:{i:0;s:5:\"dazed\";i:1;s:4:\"dead\";i:2;s:10:\"disapprove\";i:3;s:8:\"emoticon\";i:4;s:4:\"face\";i:5;s:10:\"face-dizzy\";i:6;s:10:\"face dizzy\";}}s:19:\"fas fa-face-flushed\";a:2:{s:5:\"label\";s:20:\"Face Flushed (solid)\";s:6:\"search\";a:8:{i:0;s:5:\"dazed\";i:1;s:11:\"embarrassed\";i:2;s:8:\"emoticon\";i:3;s:4:\"face\";i:4;s:7:\"flushed\";i:5;s:12:\"flushed face\";i:6;s:12:\"face-flushed\";i:7;s:12:\"face flushed\";}}s:19:\"far fa-face-flushed\";a:2:{s:5:\"label\";s:22:\"Face Flushed (regular)\";s:6:\"search\";a:8:{i:0;s:5:\"dazed\";i:1;s:11:\"embarrassed\";i:2;s:8:\"emoticon\";i:3;s:4:\"face\";i:4;s:7:\"flushed\";i:5;s:12:\"flushed face\";i:6;s:12:\"face-flushed\";i:7;s:12:\"face flushed\";}}s:17:\"fas fa-face-frown\";a:2:{s:5:\"label\";s:18:\"Face Frown (solid)\";s:6:\"search\";a:10:{i:0;s:10:\"disapprove\";i:1;s:8:\"emoticon\";i:2;s:4:\"face\";i:3;s:5:\"frown\";i:4;s:13:\"frowning face\";i:5;s:6:\"rating\";i:6;s:3:\"sad\";i:7;s:3:\"uer\";i:8;s:10:\"face-frown\";i:9;s:10:\"face frown\";}}s:17:\"far fa-face-frown\";a:2:{s:5:\"label\";s:20:\"Face Frown (regular)\";s:6:\"search\";a:10:{i:0;s:10:\"disapprove\";i:1;s:8:\"emoticon\";i:2;s:4:\"face\";i:3;s:5:\"frown\";i:4;s:13:\"frowning face\";i:5;s:6:\"rating\";i:6;s:3:\"sad\";i:7;s:3:\"uer\";i:8;s:10:\"face-frown\";i:9;s:10:\"face frown\";}}s:22:\"fas fa-face-frown-open\";a:2:{s:5:\"label\";s:23:\"Face Frown Open (solid)\";s:6:\"search\";a:11:{i:0;s:10:\"disapprove\";i:1;s:8:\"emoticon\";i:2;s:4:\"face\";i:3;s:5:\"frown\";i:4;s:29:\"frowning face with open mouth\";i:5;s:5:\"mouth\";i:6;s:4:\"open\";i:7;s:6:\"rating\";i:8;s:3:\"sad\";i:9;s:15:\"face-frown-open\";i:10;s:15:\"face frown open\";}}s:22:\"far fa-face-frown-open\";a:2:{s:5:\"label\";s:25:\"Face Frown Open (regular)\";s:6:\"search\";a:11:{i:0;s:10:\"disapprove\";i:1;s:8:\"emoticon\";i:2;s:4:\"face\";i:3;s:5:\"frown\";i:4;s:29:\"frowning face with open mouth\";i:5;s:5:\"mouth\";i:6;s:4:\"open\";i:7;s:6:\"rating\";i:8;s:3:\"sad\";i:9;s:15:\"face-frown-open\";i:10;s:15:\"face frown open\";}}s:19:\"fas fa-face-grimace\";a:2:{s:5:\"label\";s:20:\"Face Grimace (solid)\";s:6:\"search\";a:8:{i:0;s:6:\"cringe\";i:1;s:8:\"emoticon\";i:2;s:4:\"face\";i:3;s:7:\"grimace\";i:4;s:14:\"grimacing face\";i:5;s:5:\"teeth\";i:6;s:12:\"face-grimace\";i:7;s:12:\"face grimace\";}}s:19:\"far fa-face-grimace\";a:2:{s:5:\"label\";s:22:\"Face Grimace (regular)\";s:6:\"search\";a:8:{i:0;s:6:\"cringe\";i:1;s:8:\"emoticon\";i:2;s:4:\"face\";i:3;s:7:\"grimace\";i:4;s:14:\"grimacing face\";i:5;s:5:\"teeth\";i:6;s:12:\"face-grimace\";i:7;s:12:\"face grimace\";}}s:16:\"fas fa-face-grin\";a:2:{s:5:\"label\";s:17:\"Face Grin (solid)\";s:6:\"search\";a:8:{i:0;s:8:\"emoticon\";i:1;s:4:\"face\";i:2;s:4:\"grin\";i:3;s:13:\"grinning face\";i:4;s:5:\"laugh\";i:5;s:5:\"smile\";i:6;s:9:\"face-grin\";i:7;s:9:\"face grin\";}}s:16:\"far fa-face-grin\";a:2:{s:5:\"label\";s:19:\"Face Grin (regular)\";s:6:\"search\";a:8:{i:0;s:8:\"emoticon\";i:1;s:4:\"face\";i:2;s:4:\"grin\";i:3;s:13:\"grinning face\";i:4;s:5:\"laugh\";i:5;s:5:\"smile\";i:6;s:9:\"face-grin\";i:7;s:9:\"face grin\";}}s:21:\"fas fa-face-grin-beam\";a:2:{s:5:\"label\";s:22:\"Face Grin Beam (solid)\";s:6:\"search\";a:10:{i:0;s:8:\"emoticon\";i:1;s:3:\"eye\";i:2;s:4:\"face\";i:3;s:31:\"grinning face with smiling eyes\";i:4;s:5:\"laugh\";i:5;s:5:\"mouth\";i:6;s:4:\"open\";i:7;s:5:\"smile\";i:8;s:14:\"face-grin-beam\";i:9;s:14:\"face grin beam\";}}s:21:\"far fa-face-grin-beam\";a:2:{s:5:\"label\";s:24:\"Face Grin Beam (regular)\";s:6:\"search\";a:10:{i:0;s:8:\"emoticon\";i:1;s:3:\"eye\";i:2;s:4:\"face\";i:3;s:31:\"grinning face with smiling eyes\";i:4;s:5:\"laugh\";i:5;s:5:\"mouth\";i:6;s:4:\"open\";i:7;s:5:\"smile\";i:8;s:14:\"face-grin-beam\";i:9;s:14:\"face grin beam\";}}s:27:\"fas fa-face-grin-beam-sweat\";a:2:{s:5:\"label\";s:28:\"Face Grin Beam Sweat (solid)\";s:6:\"search\";a:10:{i:0;s:4:\"cold\";i:1;s:8:\"embarass\";i:2;s:8:\"emoticon\";i:3;s:4:\"face\";i:4;s:24:\"grinning face with sweat\";i:5;s:4:\"open\";i:6;s:5:\"smile\";i:7;s:5:\"sweat\";i:8;s:20:\"face-grin-beam-sweat\";i:9;s:20:\"face grin beam sweat\";}}s:27:\"far fa-face-grin-beam-sweat\";a:2:{s:5:\"label\";s:30:\"Face Grin Beam Sweat (regular)\";s:6:\"search\";a:10:{i:0;s:4:\"cold\";i:1;s:8:\"embarass\";i:2;s:8:\"emoticon\";i:3;s:4:\"face\";i:4;s:24:\"grinning face with sweat\";i:5;s:4:\"open\";i:6;s:5:\"smile\";i:7;s:5:\"sweat\";i:8;s:20:\"face-grin-beam-sweat\";i:9;s:20:\"face grin beam sweat\";}}s:23:\"fas fa-face-grin-hearts\";a:2:{s:5:\"label\";s:24:\"Face Grin Hearts (solid)\";s:6:\"search\";a:8:{i:0;s:8:\"emoticon\";i:1;s:3:\"eye\";i:2;s:4:\"face\";i:3;s:4:\"love\";i:4;s:5:\"smile\";i:5;s:28:\"smiling face with heart-eyes\";i:6;s:16:\"face-grin-hearts\";i:7;s:16:\"face grin hearts\";}}s:23:\"far fa-face-grin-hearts\";a:2:{s:5:\"label\";s:26:\"Face Grin Hearts (regular)\";s:6:\"search\";a:8:{i:0;s:8:\"emoticon\";i:1;s:3:\"eye\";i:2;s:4:\"face\";i:3;s:4:\"love\";i:4;s:5:\"smile\";i:5;s:28:\"smiling face with heart-eyes\";i:6;s:16:\"face-grin-hearts\";i:7;s:16:\"face grin hearts\";}}s:23:\"fas fa-face-grin-squint\";a:2:{s:5:\"label\";s:24:\"Face Grin Squint (solid)\";s:6:\"search\";a:9:{i:0;s:8:\"emoticon\";i:1;s:4:\"face\";i:2;s:23:\"grinning squinting face\";i:3;s:5:\"laugh\";i:4;s:5:\"mouth\";i:5;s:9:\"satisfied\";i:6;s:5:\"smile\";i:7;s:16:\"face-grin-squint\";i:8;s:16:\"face grin squint\";}}s:23:\"far fa-face-grin-squint\";a:2:{s:5:\"label\";s:26:\"Face Grin Squint (regular)\";s:6:\"search\";a:9:{i:0;s:8:\"emoticon\";i:1;s:4:\"face\";i:2;s:23:\"grinning squinting face\";i:3;s:5:\"laugh\";i:4;s:5:\"mouth\";i:5;s:9:\"satisfied\";i:6;s:5:\"smile\";i:7;s:16:\"face-grin-squint\";i:8;s:16:\"face grin squint\";}}s:29:\"fas fa-face-grin-squint-tears\";a:2:{s:5:\"label\";s:30:\"Face Grin Squint Tears (solid)\";s:6:\"search\";a:10:{i:0;s:8:\"emoticon\";i:1;s:4:\"face\";i:2;s:5:\"floor\";i:3;s:5:\"happy\";i:4;s:5:\"laugh\";i:5;s:7:\"rolling\";i:6;s:29:\"rolling on the floor laughing\";i:7;s:5:\"smile\";i:8;s:22:\"face-grin-squint-tears\";i:9;s:22:\"face grin squint tears\";}}s:29:\"far fa-face-grin-squint-tears\";a:2:{s:5:\"label\";s:32:\"Face Grin Squint Tears (regular)\";s:6:\"search\";a:10:{i:0;s:8:\"emoticon\";i:1;s:4:\"face\";i:2;s:5:\"floor\";i:3;s:5:\"happy\";i:4;s:5:\"laugh\";i:5;s:7:\"rolling\";i:6;s:29:\"rolling on the floor laughing\";i:7;s:5:\"smile\";i:8;s:22:\"face-grin-squint-tears\";i:9;s:22:\"face grin squint tears\";}}s:22:\"fas fa-face-grin-stars\";a:2:{s:5:\"label\";s:23:\"Face Grin Stars (solid)\";s:6:\"search\";a:11:{i:0;s:8:\"emoticon\";i:1;s:4:\"eyes\";i:2;s:4:\"face\";i:3;s:8:\"grinning\";i:4;s:7:\"quality\";i:5;s:4:\"star\";i:6;s:11:\"star-struck\";i:7;s:11:\"starry-eyed\";i:8;s:3:\"vip\";i:9;s:15:\"face-grin-stars\";i:10;s:15:\"face grin stars\";}}s:22:\"far fa-face-grin-stars\";a:2:{s:5:\"label\";s:25:\"Face Grin Stars (regular)\";s:6:\"search\";a:11:{i:0;s:8:\"emoticon\";i:1;s:4:\"eyes\";i:2;s:4:\"face\";i:3;s:8:\"grinning\";i:4;s:7:\"quality\";i:5;s:4:\"star\";i:6;s:11:\"star-struck\";i:7;s:11:\"starry-eyed\";i:8;s:3:\"vip\";i:9;s:15:\"face-grin-stars\";i:10;s:15:\"face grin stars\";}}s:22:\"fas fa-face-grin-tears\";a:2:{s:5:\"label\";s:23:\"Face Grin Tears (solid)\";s:6:\"search\";a:9:{i:0;s:3:\"LOL\";i:1;s:8:\"emoticon\";i:2;s:4:\"face\";i:3;s:22:\"face with tears of joy\";i:4;s:3:\"joy\";i:5;s:5:\"laugh\";i:6;s:4:\"tear\";i:7;s:15:\"face-grin-tears\";i:8;s:15:\"face grin tears\";}}s:22:\"far fa-face-grin-tears\";a:2:{s:5:\"label\";s:25:\"Face Grin Tears (regular)\";s:6:\"search\";a:9:{i:0;s:3:\"LOL\";i:1;s:8:\"emoticon\";i:2;s:4:\"face\";i:3;s:22:\"face with tears of joy\";i:4;s:3:\"joy\";i:5;s:5:\"laugh\";i:6;s:4:\"tear\";i:7;s:15:\"face-grin-tears\";i:8;s:15:\"face grin tears\";}}s:23:\"fas fa-face-grin-tongue\";a:2:{s:5:\"label\";s:24:\"Face Grin Tongue (solid)\";s:6:\"search\";a:7:{i:0;s:3:\"LOL\";i:1;s:8:\"emoticon\";i:2;s:4:\"face\";i:3;s:16:\"face with tongue\";i:4;s:6:\"tongue\";i:5;s:16:\"face-grin-tongue\";i:6;s:16:\"face grin tongue\";}}s:23:\"far fa-face-grin-tongue\";a:2:{s:5:\"label\";s:26:\"Face Grin Tongue (regular)\";s:6:\"search\";a:7:{i:0;s:3:\"LOL\";i:1;s:8:\"emoticon\";i:2;s:4:\"face\";i:3;s:16:\"face with tongue\";i:4;s:6:\"tongue\";i:5;s:16:\"face-grin-tongue\";i:6;s:16:\"face grin tongue\";}}s:30:\"fas fa-face-grin-tongue-squint\";a:2:{s:5:\"label\";s:31:\"Face Grin Tongue Squint (solid)\";s:6:\"search\";a:10:{i:0;s:3:\"LOL\";i:1;s:8:\"emoticon\";i:2;s:3:\"eye\";i:3;s:4:\"face\";i:4;s:8:\"horrible\";i:5;s:26:\"squinting face with tongue\";i:6;s:5:\"taste\";i:7;s:6:\"tongue\";i:8;s:23:\"face-grin-tongue-squint\";i:9;s:23:\"face grin tongue squint\";}}s:30:\"far fa-face-grin-tongue-squint\";a:2:{s:5:\"label\";s:33:\"Face Grin Tongue Squint (regular)\";s:6:\"search\";a:10:{i:0;s:3:\"LOL\";i:1;s:8:\"emoticon\";i:2;s:3:\"eye\";i:3;s:4:\"face\";i:4;s:8:\"horrible\";i:5;s:26:\"squinting face with tongue\";i:6;s:5:\"taste\";i:7;s:6:\"tongue\";i:8;s:23:\"face-grin-tongue-squint\";i:9;s:23:\"face grin tongue squint\";}}s:28:\"fas fa-face-grin-tongue-wink\";a:2:{s:5:\"label\";s:29:\"Face Grin Tongue Wink (solid)\";s:6:\"search\";a:10:{i:0;s:3:\"LOL\";i:1;s:8:\"emoticon\";i:2;s:3:\"eye\";i:3;s:4:\"face\";i:4;s:4:\"joke\";i:5;s:6:\"tongue\";i:6;s:4:\"wink\";i:7;s:24:\"winking face with tongue\";i:8;s:21:\"face-grin-tongue-wink\";i:9;s:21:\"face grin tongue wink\";}}s:28:\"far fa-face-grin-tongue-wink\";a:2:{s:5:\"label\";s:31:\"Face Grin Tongue Wink (regular)\";s:6:\"search\";a:10:{i:0;s:3:\"LOL\";i:1;s:8:\"emoticon\";i:2;s:3:\"eye\";i:3;s:4:\"face\";i:4;s:4:\"joke\";i:5;s:6:\"tongue\";i:6;s:4:\"wink\";i:7;s:24:\"winking face with tongue\";i:8;s:21:\"face-grin-tongue-wink\";i:9;s:21:\"face grin tongue wink\";}}s:21:\"fas fa-face-grin-wide\";a:2:{s:5:\"label\";s:22:\"Face Grin Wide (solid)\";s:6:\"search\";a:9:{i:0;s:8:\"emoticon\";i:1;s:4:\"face\";i:2;s:27:\"grinning face with big eyes\";i:3;s:5:\"laugh\";i:4;s:5:\"mouth\";i:5;s:4:\"open\";i:6;s:5:\"smile\";i:7;s:14:\"face-grin-wide\";i:8;s:14:\"face grin wide\";}}s:21:\"far fa-face-grin-wide\";a:2:{s:5:\"label\";s:24:\"Face Grin Wide (regular)\";s:6:\"search\";a:9:{i:0;s:8:\"emoticon\";i:1;s:4:\"face\";i:2;s:27:\"grinning face with big eyes\";i:3;s:5:\"laugh\";i:4;s:5:\"mouth\";i:5;s:4:\"open\";i:6;s:5:\"smile\";i:7;s:14:\"face-grin-wide\";i:8;s:14:\"face grin wide\";}}s:21:\"fas fa-face-grin-wink\";a:2:{s:5:\"label\";s:22:\"Face Grin Wink (solid)\";s:6:\"search\";a:7:{i:0;s:8:\"emoticon\";i:1;s:4:\"face\";i:2;s:5:\"flirt\";i:3;s:5:\"laugh\";i:4;s:5:\"smile\";i:5;s:14:\"face-grin-wink\";i:6;s:14:\"face grin wink\";}}s:21:\"far fa-face-grin-wink\";a:2:{s:5:\"label\";s:24:\"Face Grin Wink (regular)\";s:6:\"search\";a:7:{i:0;s:8:\"emoticon\";i:1;s:4:\"face\";i:2;s:5:\"flirt\";i:3;s:5:\"laugh\";i:4;s:5:\"smile\";i:5;s:14:\"face-grin-wink\";i:6;s:14:\"face grin wink\";}}s:16:\"fas fa-face-kiss\";a:2:{s:5:\"label\";s:17:\"Face Kiss (solid)\";s:6:\"search\";a:9:{i:0;s:4:\"beso\";i:1;s:8:\"emoticon\";i:2;s:4:\"face\";i:3;s:4:\"kiss\";i:4;s:12:\"kissing face\";i:5;s:4:\"love\";i:6;s:6:\"smooch\";i:7;s:9:\"face-kiss\";i:8;s:9:\"face kiss\";}}s:16:\"far fa-face-kiss\";a:2:{s:5:\"label\";s:19:\"Face Kiss (regular)\";s:6:\"search\";a:9:{i:0;s:4:\"beso\";i:1;s:8:\"emoticon\";i:2;s:4:\"face\";i:3;s:4:\"kiss\";i:4;s:12:\"kissing face\";i:5;s:4:\"love\";i:6;s:6:\"smooch\";i:7;s:9:\"face-kiss\";i:8;s:9:\"face kiss\";}}s:21:\"fas fa-face-kiss-beam\";a:2:{s:5:\"label\";s:22:\"Face Kiss Beam (solid)\";s:6:\"search\";a:11:{i:0;s:4:\"beso\";i:1;s:8:\"emoticon\";i:2;s:3:\"eye\";i:3;s:4:\"face\";i:4;s:4:\"kiss\";i:5;s:30:\"kissing face with smiling eyes\";i:6;s:4:\"love\";i:7;s:5:\"smile\";i:8;s:6:\"smooch\";i:9;s:14:\"face-kiss-beam\";i:10;s:14:\"face kiss beam\";}}s:21:\"far fa-face-kiss-beam\";a:2:{s:5:\"label\";s:24:\"Face Kiss Beam (regular)\";s:6:\"search\";a:11:{i:0;s:4:\"beso\";i:1;s:8:\"emoticon\";i:2;s:3:\"eye\";i:3;s:4:\"face\";i:4;s:4:\"kiss\";i:5;s:30:\"kissing face with smiling eyes\";i:6;s:4:\"love\";i:7;s:5:\"smile\";i:8;s:6:\"smooch\";i:9;s:14:\"face-kiss-beam\";i:10;s:14:\"face kiss beam\";}}s:27:\"fas fa-face-kiss-wink-heart\";a:2:{s:5:\"label\";s:28:\"Face Kiss Wink Heart (solid)\";s:6:\"search\";a:9:{i:0;s:4:\"beso\";i:1;s:8:\"emoticon\";i:2;s:4:\"face\";i:3;s:19:\"face blowing a kiss\";i:4;s:4:\"kiss\";i:5;s:4:\"love\";i:6;s:6:\"smooch\";i:7;s:20:\"face-kiss-wink-heart\";i:8;s:20:\"face kiss wink heart\";}}s:27:\"far fa-face-kiss-wink-heart\";a:2:{s:5:\"label\";s:30:\"Face Kiss Wink Heart (regular)\";s:6:\"search\";a:9:{i:0;s:4:\"beso\";i:1;s:8:\"emoticon\";i:2;s:4:\"face\";i:3;s:19:\"face blowing a kiss\";i:4;s:4:\"kiss\";i:5;s:4:\"love\";i:6;s:6:\"smooch\";i:7;s:20:\"face-kiss-wink-heart\";i:8;s:20:\"face kiss wink heart\";}}s:17:\"fas fa-face-laugh\";a:2:{s:5:\"label\";s:18:\"Face Laugh (solid)\";s:6:\"search\";a:7:{i:0;s:3:\"LOL\";i:1;s:8:\"emoticon\";i:2;s:4:\"face\";i:3;s:5:\"laugh\";i:4;s:5:\"smile\";i:5;s:10:\"face-laugh\";i:6;s:10:\"face laugh\";}}s:17:\"far fa-face-laugh\";a:2:{s:5:\"label\";s:20:\"Face Laugh (regular)\";s:6:\"search\";a:7:{i:0;s:3:\"LOL\";i:1;s:8:\"emoticon\";i:2;s:4:\"face\";i:3;s:5:\"laugh\";i:4;s:5:\"smile\";i:5;s:10:\"face-laugh\";i:6;s:10:\"face laugh\";}}s:22:\"fas fa-face-laugh-beam\";a:2:{s:5:\"label\";s:23:\"Face Laugh Beam (solid)\";s:6:\"search\";a:10:{i:0;s:3:\"LOL\";i:1;s:30:\"beaming face with smiling eyes\";i:2;s:8:\"emoticon\";i:3;s:3:\"eye\";i:4;s:4:\"face\";i:5;s:4:\"grin\";i:6;s:5:\"happy\";i:7;s:5:\"smile\";i:8;s:15:\"face-laugh-beam\";i:9;s:15:\"face laugh beam\";}}s:22:\"far fa-face-laugh-beam\";a:2:{s:5:\"label\";s:25:\"Face Laugh Beam (regular)\";s:6:\"search\";a:10:{i:0;s:3:\"LOL\";i:1;s:30:\"beaming face with smiling eyes\";i:2;s:8:\"emoticon\";i:3;s:3:\"eye\";i:4;s:4:\"face\";i:5;s:4:\"grin\";i:6;s:5:\"happy\";i:7;s:5:\"smile\";i:8;s:15:\"face-laugh-beam\";i:9;s:15:\"face laugh beam\";}}s:24:\"fas fa-face-laugh-squint\";a:2:{s:5:\"label\";s:25:\"Face Laugh Squint (solid)\";s:6:\"search\";a:7:{i:0;s:3:\"LOL\";i:1;s:8:\"emoticon\";i:2;s:4:\"face\";i:3;s:5:\"happy\";i:4;s:5:\"smile\";i:5;s:17:\"face-laugh-squint\";i:6;s:17:\"face laugh squint\";}}s:24:\"far fa-face-laugh-squint\";a:2:{s:5:\"label\";s:27:\"Face Laugh Squint (regular)\";s:6:\"search\";a:7:{i:0;s:3:\"LOL\";i:1;s:8:\"emoticon\";i:2;s:4:\"face\";i:3;s:5:\"happy\";i:4;s:5:\"smile\";i:5;s:17:\"face-laugh-squint\";i:6;s:17:\"face laugh squint\";}}s:22:\"fas fa-face-laugh-wink\";a:2:{s:5:\"label\";s:23:\"Face Laugh Wink (solid)\";s:6:\"search\";a:7:{i:0;s:3:\"LOL\";i:1;s:8:\"emoticon\";i:2;s:4:\"face\";i:3;s:5:\"happy\";i:4;s:5:\"smile\";i:5;s:15:\"face-laugh-wink\";i:6;s:15:\"face laugh wink\";}}s:22:\"far fa-face-laugh-wink\";a:2:{s:5:\"label\";s:25:\"Face Laugh Wink (regular)\";s:6:\"search\";a:7:{i:0;s:3:\"LOL\";i:1;s:8:\"emoticon\";i:2;s:4:\"face\";i:3;s:5:\"happy\";i:4;s:5:\"smile\";i:5;s:15:\"face-laugh-wink\";i:6;s:15:\"face laugh wink\";}}s:15:\"fas fa-face-meh\";a:2:{s:5:\"label\";s:16:\"Face Meh (solid)\";s:6:\"search\";a:11:{i:0;s:7:\"deadpan\";i:1;s:7:\"default\";i:2;s:8:\"emoticon\";i:3;s:4:\"face\";i:4;s:3:\"meh\";i:5;s:7:\"neutral\";i:6;s:12:\"neutral face\";i:7;s:6:\"rating\";i:8;s:3:\"uer\";i:9;s:8:\"face-meh\";i:10;s:8:\"face meh\";}}s:15:\"far fa-face-meh\";a:2:{s:5:\"label\";s:18:\"Face Meh (regular)\";s:6:\"search\";a:11:{i:0;s:7:\"deadpan\";i:1;s:7:\"default\";i:2;s:8:\"emoticon\";i:3;s:4:\"face\";i:4;s:3:\"meh\";i:5;s:7:\"neutral\";i:6;s:12:\"neutral face\";i:7;s:6:\"rating\";i:8;s:3:\"uer\";i:9;s:8:\"face-meh\";i:10;s:8:\"face meh\";}}s:21:\"fas fa-face-meh-blank\";a:2:{s:5:\"label\";s:22:\"Face Meh Blank (solid)\";s:6:\"search\";a:10:{i:0;s:8:\"emoticon\";i:1;s:4:\"face\";i:2;s:18:\"face without mouth\";i:3;s:5:\"mouth\";i:4;s:7:\"neutral\";i:5;s:5:\"quiet\";i:6;s:6:\"rating\";i:7;s:6:\"silent\";i:8;s:14:\"face-meh-blank\";i:9;s:14:\"face meh blank\";}}s:21:\"far fa-face-meh-blank\";a:2:{s:5:\"label\";s:24:\"Face Meh Blank (regular)\";s:6:\"search\";a:10:{i:0;s:8:\"emoticon\";i:1;s:4:\"face\";i:2;s:18:\"face without mouth\";i:3;s:5:\"mouth\";i:4;s:7:\"neutral\";i:5;s:5:\"quiet\";i:6;s:6:\"rating\";i:7;s:6:\"silent\";i:8;s:14:\"face-meh-blank\";i:9;s:14:\"face meh blank\";}}s:24:\"fas fa-face-rolling-eyes\";a:2:{s:5:\"label\";s:25:\"Face Rolling Eyes (solid)\";s:6:\"search\";a:10:{i:0;s:8:\"emoticon\";i:1;s:7:\"eyeroll\";i:2;s:4:\"eyes\";i:3;s:4:\"face\";i:4;s:22:\"face with rolling eyes\";i:5;s:7:\"neutral\";i:6;s:6:\"rating\";i:7;s:7:\"rolling\";i:8;s:17:\"face-rolling-eyes\";i:9;s:17:\"face rolling eyes\";}}s:24:\"far fa-face-rolling-eyes\";a:2:{s:5:\"label\";s:27:\"Face Rolling Eyes (regular)\";s:6:\"search\";a:10:{i:0;s:8:\"emoticon\";i:1;s:7:\"eyeroll\";i:2;s:4:\"eyes\";i:3;s:4:\"face\";i:4;s:22:\"face with rolling eyes\";i:5;s:7:\"neutral\";i:6;s:6:\"rating\";i:7;s:7:\"rolling\";i:8;s:17:\"face-rolling-eyes\";i:9;s:17:\"face rolling eyes\";}}s:19:\"fas fa-face-sad-cry\";a:2:{s:5:\"label\";s:20:\"Face Sad Cry (solid)\";s:6:\"search\";a:10:{i:0;s:3:\"cry\";i:1;s:8:\"emoticon\";i:2;s:4:\"face\";i:3;s:18:\"loudly crying face\";i:4;s:3:\"sad\";i:5;s:3:\"sob\";i:6;s:4:\"tear\";i:7;s:5:\"tears\";i:8;s:12:\"face-sad-cry\";i:9;s:12:\"face sad cry\";}}s:19:\"far fa-face-sad-cry\";a:2:{s:5:\"label\";s:22:\"Face Sad Cry (regular)\";s:6:\"search\";a:10:{i:0;s:3:\"cry\";i:1;s:8:\"emoticon\";i:2;s:4:\"face\";i:3;s:18:\"loudly crying face\";i:4;s:3:\"sad\";i:5;s:3:\"sob\";i:6;s:4:\"tear\";i:7;s:5:\"tears\";i:8;s:12:\"face-sad-cry\";i:9;s:12:\"face sad cry\";}}s:20:\"fas fa-face-sad-tear\";a:2:{s:5:\"label\";s:21:\"Face Sad Tear (solid)\";s:6:\"search\";a:9:{i:0;s:3:\"cry\";i:1;s:11:\"crying face\";i:2;s:8:\"emoticon\";i:3;s:4:\"face\";i:4;s:3:\"sad\";i:5;s:4:\"tear\";i:6;s:5:\"tears\";i:7;s:13:\"face-sad-tear\";i:8;s:13:\"face sad tear\";}}s:20:\"far fa-face-sad-tear\";a:2:{s:5:\"label\";s:23:\"Face Sad Tear (regular)\";s:6:\"search\";a:9:{i:0;s:3:\"cry\";i:1;s:11:\"crying face\";i:2;s:8:\"emoticon\";i:3;s:4:\"face\";i:4;s:3:\"sad\";i:5;s:4:\"tear\";i:6;s:5:\"tears\";i:7;s:13:\"face-sad-tear\";i:8;s:13:\"face sad tear\";}}s:17:\"fas fa-face-smile\";a:2:{s:5:\"label\";s:18:\"Face Smile (solid)\";s:6:\"search\";a:12:{i:0;s:7:\"approve\";i:1;s:7:\"default\";i:2;s:8:\"emoticon\";i:3;s:4:\"face\";i:4;s:5:\"happy\";i:5;s:6:\"rating\";i:6;s:9:\"satisfied\";i:7;s:21:\"slightly smiling face\";i:8;s:5:\"smile\";i:9;s:3:\"uer\";i:10;s:10:\"face-smile\";i:11;s:10:\"face smile\";}}s:17:\"far fa-face-smile\";a:2:{s:5:\"label\";s:20:\"Face Smile (regular)\";s:6:\"search\";a:12:{i:0;s:7:\"approve\";i:1;s:7:\"default\";i:2;s:8:\"emoticon\";i:3;s:4:\"face\";i:4;s:5:\"happy\";i:5;s:6:\"rating\";i:6;s:9:\"satisfied\";i:7;s:21:\"slightly smiling face\";i:8;s:5:\"smile\";i:9;s:3:\"uer\";i:10;s:10:\"face-smile\";i:11;s:10:\"face smile\";}}s:22:\"fas fa-face-smile-beam\";a:2:{s:5:\"label\";s:23:\"Face Smile Beam (solid)\";s:6:\"search\";a:10:{i:0;s:5:\"blush\";i:1;s:8:\"emoticon\";i:2;s:3:\"eye\";i:3;s:4:\"face\";i:4;s:5:\"happy\";i:5;s:8:\"positive\";i:6;s:5:\"smile\";i:7;s:30:\"smiling face with smiling eyes\";i:8;s:15:\"face-smile-beam\";i:9;s:15:\"face smile beam\";}}s:22:\"far fa-face-smile-beam\";a:2:{s:5:\"label\";s:25:\"Face Smile Beam (regular)\";s:6:\"search\";a:10:{i:0;s:5:\"blush\";i:1;s:8:\"emoticon\";i:2;s:3:\"eye\";i:3;s:4:\"face\";i:4;s:5:\"happy\";i:5;s:8:\"positive\";i:6;s:5:\"smile\";i:7;s:30:\"smiling face with smiling eyes\";i:8;s:15:\"face-smile-beam\";i:9;s:15:\"face smile beam\";}}s:22:\"fas fa-face-smile-wink\";a:2:{s:5:\"label\";s:23:\"Face Smile Wink (solid)\";s:6:\"search\";a:9:{i:0;s:8:\"emoticon\";i:1;s:4:\"face\";i:2;s:5:\"happy\";i:3;s:4:\"hint\";i:4;s:4:\"joke\";i:5;s:4:\"wink\";i:6;s:12:\"winking face\";i:7;s:15:\"face-smile-wink\";i:8;s:15:\"face smile wink\";}}s:22:\"far fa-face-smile-wink\";a:2:{s:5:\"label\";s:25:\"Face Smile Wink (regular)\";s:6:\"search\";a:9:{i:0;s:8:\"emoticon\";i:1;s:4:\"face\";i:2;s:5:\"happy\";i:3;s:4:\"hint\";i:4;s:4:\"joke\";i:5;s:4:\"wink\";i:6;s:12:\"winking face\";i:7;s:15:\"face-smile-wink\";i:8;s:15:\"face smile wink\";}}s:20:\"fas fa-face-surprise\";a:2:{s:5:\"label\";s:21:\"Face Surprise (solid)\";s:6:\"search\";a:9:{i:0;s:8:\"emoticon\";i:1;s:4:\"face\";i:2;s:20:\"face with open mouth\";i:3;s:5:\"mouth\";i:4;s:4:\"open\";i:5;s:7:\"shocked\";i:6;s:8:\"sympathy\";i:7;s:13:\"face-surprise\";i:8;s:13:\"face surprise\";}}s:20:\"far fa-face-surprise\";a:2:{s:5:\"label\";s:23:\"Face Surprise (regular)\";s:6:\"search\";a:9:{i:0;s:8:\"emoticon\";i:1;s:4:\"face\";i:2;s:20:\"face with open mouth\";i:3;s:5:\"mouth\";i:4;s:4:\"open\";i:5;s:7:\"shocked\";i:6;s:8:\"sympathy\";i:7;s:13:\"face-surprise\";i:8;s:13:\"face surprise\";}}s:17:\"fas fa-face-tired\";a:2:{s:5:\"label\";s:18:\"Face Tired (solid)\";s:6:\"search\";a:9:{i:0;s:5:\"angry\";i:1;s:8:\"emoticon\";i:2;s:4:\"face\";i:3;s:6:\"grumpy\";i:4;s:5:\"tired\";i:5;s:10:\"tired face\";i:6;s:5:\"upset\";i:7;s:10:\"face-tired\";i:8;s:10:\"face tired\";}}s:17:\"far fa-face-tired\";a:2:{s:5:\"label\";s:20:\"Face Tired (regular)\";s:6:\"search\";a:9:{i:0;s:5:\"angry\";i:1;s:8:\"emoticon\";i:2;s:4:\"face\";i:3;s:6:\"grumpy\";i:4;s:5:\"tired\";i:5;s:10:\"tired face\";i:6;s:5:\"upset\";i:7;s:10:\"face-tired\";i:8;s:10:\"face tired\";}}s:15:\"fab fa-facebook\";a:2:{s:5:\"label\";s:8:\"Facebook\";s:6:\"search\";a:5:{i:0;s:6:\"fabook\";i:1;s:17:\"facebook-official\";i:2;s:2:\"fb\";i:3;s:14:\"social network\";i:4;s:8:\"facebook\";}}s:17:\"fab fa-facebook-f\";a:2:{s:5:\"label\";s:10:\"Facebook F\";s:6:\"search\";a:5:{i:0;s:6:\"fabook\";i:1;s:8:\"facebook\";i:2;s:2:\"fb\";i:3;s:10:\"facebook-f\";i:4;s:10:\"facebook f\";}}s:25:\"fab fa-facebook-messenger\";a:2:{s:5:\"label\";s:18:\"Facebook Messenger\";s:6:\"search\";a:4:{i:0;s:6:\"fabook\";i:1;s:2:\"fb\";i:2;s:18:\"facebook-messenger\";i:3;s:18:\"facebook messenger\";}}s:10:\"fas fa-fan\";a:2:{s:5:\"label\";s:3:\"Fan\";s:6:\"search\";a:7:{i:0;s:2:\"ac\";i:1;s:16:\"air conditioning\";i:2;s:5:\"blade\";i:3;s:6:\"blower\";i:4;s:4:\"cool\";i:5;s:3:\"hot\";i:6;s:3:\"fan\";}}s:27:\"fab fa-fantasy-flight-games\";a:2:{s:5:\"label\";s:20:\"Fantasy Flight-games\";s:6:\"search\";a:9:{i:0;s:18:\"Dungeons & Dragons\";i:1;s:3:\"d&d\";i:2;s:3:\"dnd\";i:3;s:7:\"fantasy\";i:4;s:4:\"game\";i:5;s:6:\"gaming\";i:6;s:8:\"tabletop\";i:7;s:20:\"fantasy-flight-games\";i:8;s:20:\"fantasy flight-games\";}}s:13:\"fas fa-faucet\";a:2:{s:5:\"label\";s:6:\"Faucet\";s:6:\"search\";a:12:{i:0;s:8:\"covid-19\";i:1;s:8:\"drinking\";i:2;s:4:\"drip\";i:3;s:5:\"house\";i:4;s:7:\"hygiene\";i:5;s:7:\"kitchen\";i:6;s:7:\"potable\";i:7;s:13:\"potable water\";i:8;s:10:\"sanitation\";i:9;s:4:\"sink\";i:10;s:5:\"water\";i:11;s:6:\"faucet\";}}s:18:\"fas fa-faucet-drip\";a:2:{s:5:\"label\";s:11:\"Faucet Drip\";s:6:\"search\";a:12:{i:0;s:8:\"drinking\";i:1;s:4:\"drip\";i:2;s:5:\"house\";i:3;s:7:\"hygiene\";i:4;s:7:\"kitchen\";i:5;s:7:\"potable\";i:6;s:13:\"potable water\";i:7;s:10:\"sanitation\";i:8;s:4:\"sink\";i:9;s:5:\"water\";i:10;s:11:\"faucet-drip\";i:11;s:11:\"faucet drip\";}}s:10:\"fas fa-fax\";a:2:{s:5:\"label\";s:3:\"Fax\";s:6:\"search\";a:8:{i:0;s:8:\"Fax Icon\";i:1;s:8:\"business\";i:2;s:11:\"communicate\";i:3;s:4:\"copy\";i:4;s:9:\"facsimile\";i:5;s:3:\"fax\";i:6;s:11:\"fax machine\";i:7;s:4:\"send\";}}s:14:\"fas fa-feather\";a:2:{s:5:\"label\";s:7:\"Feather\";s:6:\"search\";a:8:{i:0;s:4:\"bird\";i:1;s:7:\"feather\";i:2;s:6:\"flight\";i:3;s:5:\"light\";i:4;s:7:\"plucked\";i:5;s:7:\"plumage\";i:6;s:5:\"quill\";i:7;s:5:\"write\";}}s:22:\"fas fa-feather-pointed\";a:2:{s:5:\"label\";s:15:\"Feather Pointed\";s:6:\"search\";a:7:{i:0;s:4:\"bird\";i:1;s:5:\"light\";i:2;s:7:\"plucked\";i:3;s:5:\"quill\";i:4;s:5:\"write\";i:5;s:15:\"feather-pointed\";i:6;s:15:\"feather pointed\";}}s:12:\"fab fa-fedex\";a:2:{s:5:\"label\";s:5:\"FedEx\";s:6:\"search\";a:4:{i:0;s:15:\"Federal Express\";i:1;s:7:\"package\";i:2;s:8:\"shipping\";i:3;s:5:\"fedex\";}}s:13:\"fab fa-fedora\";a:2:{s:5:\"label\";s:6:\"Fedora\";s:6:\"search\";a:4:{i:0;s:5:\"linux\";i:1;s:16:\"operating system\";i:2;s:2:\"os\";i:3;s:6:\"fedora\";}}s:12:\"fas fa-ferry\";a:2:{s:5:\"label\";s:5:\"Ferry\";s:6:\"search\";a:6:{i:0;s:5:\"barge\";i:1;s:4:\"boat\";i:2;s:5:\"carry\";i:3;s:9:\"ferryboat\";i:4;s:4:\"ship\";i:5;s:5:\"ferry\";}}s:12:\"fab fa-figma\";a:2:{s:5:\"label\";s:5:\"Figma\";s:6:\"search\";a:4:{i:0;s:3:\"app\";i:1;s:6:\"design\";i:2;s:9:\"interface\";i:3;s:5:\"figma\";}}s:11:\"fas fa-file\";a:2:{s:5:\"label\";s:12:\"File (solid)\";s:6:\"search\";a:9:{i:0;s:14:\"Empty Document\";i:1;s:2:\"cv\";i:2;s:8:\"document\";i:3;s:3:\"new\";i:4;s:4:\"page\";i:5;s:14:\"page facing up\";i:6;s:3:\"pdf\";i:7;s:6:\"resume\";i:8;s:4:\"file\";}}s:11:\"far fa-file\";a:2:{s:5:\"label\";s:14:\"File (regular)\";s:6:\"search\";a:9:{i:0;s:14:\"Empty Document\";i:1;s:2:\"cv\";i:2;s:8:\"document\";i:3;s:3:\"new\";i:4;s:4:\"page\";i:5;s:14:\"page facing up\";i:6;s:3:\"pdf\";i:7;s:6:\"resume\";i:8;s:4:\"file\";}}s:22:\"fas fa-file-arrow-down\";a:2:{s:5:\"label\";s:15:\"File Arrow Down\";s:6:\"search\";a:6:{i:0;s:8:\"document\";i:1;s:6:\"export\";i:2;s:6:\"insert\";i:3;s:4:\"save\";i:4;s:15:\"file-arrow-down\";i:5;s:15:\"file arrow down\";}}s:20:\"fas fa-file-arrow-up\";a:2:{s:5:\"label\";s:13:\"File Arrow Up\";s:6:\"search\";a:7:{i:0;s:8:\"document\";i:1;s:6:\"import\";i:2;s:4:\"page\";i:3;s:4:\"save\";i:4;s:7:\"upgrade\";i:5;s:13:\"file-arrow-up\";i:6;s:13:\"file arrow up\";}}s:17:\"fas fa-file-audio\";a:2:{s:5:\"label\";s:18:\"File Audio (solid)\";s:6:\"search\";a:8:{i:0;s:8:\"document\";i:1;s:3:\"mp3\";i:2;s:5:\"music\";i:3;s:4:\"page\";i:4;s:4:\"play\";i:5;s:5:\"sound\";i:6;s:10:\"file-audio\";i:7;s:10:\"file audio\";}}s:17:\"far fa-file-audio\";a:2:{s:5:\"label\";s:20:\"File Audio (regular)\";s:6:\"search\";a:8:{i:0;s:8:\"document\";i:1;s:3:\"mp3\";i:2;s:5:\"music\";i:3;s:4:\"page\";i:4;s:4:\"play\";i:5;s:5:\"sound\";i:6;s:10:\"file-audio\";i:7;s:10:\"file audio\";}}s:24:\"fas fa-file-circle-check\";a:2:{s:5:\"label\";s:17:\"File Circle Check\";s:6:\"search\";a:11:{i:0;s:8:\"document\";i:1;s:6:\"enable\";i:2;s:4:\"file\";i:3;s:12:\"not affected\";i:4;s:2:\"ok\";i:5;s:4:\"okay\";i:6;s:5:\"paper\";i:7;s:8:\"validate\";i:8;s:7:\"working\";i:9;s:17:\"file-circle-check\";i:10;s:17:\"file circle check\";}}s:30:\"fas fa-file-circle-exclamation\";a:2:{s:5:\"label\";s:23:\"File Circle Exclamation\";s:6:\"search\";a:6:{i:0;s:8:\"document\";i:1;s:6:\"failed\";i:2;s:4:\"file\";i:3;s:5:\"paper\";i:4;s:23:\"file-circle-exclamation\";i:5;s:23:\"file circle exclamation\";}}s:24:\"fas fa-file-circle-minus\";a:2:{s:5:\"label\";s:17:\"File Circle Minus\";s:6:\"search\";a:5:{i:0;s:8:\"document\";i:1;s:4:\"file\";i:2;s:5:\"paper\";i:3;s:17:\"file-circle-minus\";i:4;s:17:\"file circle minus\";}}s:23:\"fas fa-file-circle-plus\";a:2:{s:5:\"label\";s:16:\"File Circle Plus\";s:6:\"search\";a:9:{i:0;s:3:\"add\";i:1;s:8:\"document\";i:2;s:4:\"file\";i:3;s:3:\"new\";i:4;s:4:\"page\";i:5;s:5:\"paper\";i:6;s:3:\"pdf\";i:7;s:16:\"file-circle-plus\";i:8;s:16:\"file circle plus\";}}s:27:\"fas fa-file-circle-question\";a:2:{s:5:\"label\";s:20:\"File Circle Question\";s:6:\"search\";a:5:{i:0;s:8:\"document\";i:1;s:4:\"file\";i:2;s:5:\"paper\";i:3;s:20:\"file-circle-question\";i:4;s:20:\"file circle question\";}}s:24:\"fas fa-file-circle-xmark\";a:2:{s:5:\"label\";s:17:\"File Circle Xmark\";s:6:\"search\";a:6:{i:0;s:8:\"document\";i:1;s:4:\"file\";i:2;s:5:\"paper\";i:3;s:7:\"uncheck\";i:4;s:17:\"file-circle-xmark\";i:5;s:17:\"file circle xmark\";}}s:16:\"fas fa-file-code\";a:2:{s:5:\"label\";s:17:\"File Code (solid)\";s:6:\"search\";a:8:{i:0;s:3:\"css\";i:1;s:11:\"development\";i:2;s:8:\"document\";i:3;s:4:\"html\";i:4;s:5:\"mysql\";i:5;s:3:\"sql\";i:6;s:9:\"file-code\";i:7;s:9:\"file code\";}}s:16:\"far fa-file-code\";a:2:{s:5:\"label\";s:19:\"File Code (regular)\";s:6:\"search\";a:8:{i:0;s:3:\"css\";i:1;s:11:\"development\";i:2;s:8:\"document\";i:3;s:4:\"html\";i:4;s:5:\"mysql\";i:5;s:3:\"sql\";i:6;s:9:\"file-code\";i:7;s:9:\"file code\";}}s:20:\"fas fa-file-contract\";a:2:{s:5:\"label\";s:13:\"File Contract\";s:6:\"search\";a:8:{i:0;s:9:\"agreement\";i:1;s:7:\"binding\";i:2;s:8:\"document\";i:3;s:5:\"legal\";i:4;s:9:\"signature\";i:5;s:8:\"username\";i:6;s:13:\"file-contract\";i:7;s:13:\"file contract\";}}s:15:\"fas fa-file-csv\";a:2:{s:5:\"label\";s:8:\"File Csv\";s:6:\"search\";a:7:{i:0;s:8:\"document\";i:1;s:5:\"excel\";i:2;s:7:\"numbers\";i:3;s:12:\"spreadsheets\";i:4;s:5:\"table\";i:5;s:8:\"file-csv\";i:6;s:8:\"file csv\";}}s:17:\"fas fa-file-excel\";a:2:{s:5:\"label\";s:18:\"File Excel (solid)\";s:6:\"search\";a:7:{i:0;s:3:\"csv\";i:1;s:8:\"document\";i:2;s:7:\"numbers\";i:3;s:12:\"spreadsheets\";i:4;s:5:\"table\";i:5;s:10:\"file-excel\";i:6;s:10:\"file excel\";}}s:17:\"far fa-file-excel\";a:2:{s:5:\"label\";s:20:\"File Excel (regular)\";s:6:\"search\";a:7:{i:0;s:3:\"csv\";i:1;s:8:\"document\";i:2;s:7:\"numbers\";i:3;s:12:\"spreadsheets\";i:4;s:5:\"table\";i:5;s:10:\"file-excel\";i:6;s:10:\"file excel\";}}s:18:\"fas fa-file-export\";a:2:{s:5:\"label\";s:11:\"File Export\";s:6:\"search\";a:4:{i:0;s:8:\"download\";i:1;s:4:\"save\";i:2;s:11:\"file-export\";i:3;s:11:\"file export\";}}s:17:\"fas fa-file-image\";a:2:{s:5:\"label\";s:18:\"File Image (solid)\";s:6:\"search\";a:9:{i:0;s:21:\"Document with Picture\";i:1;s:8:\"document\";i:2;s:5:\"image\";i:3;s:3:\"img\";i:4;s:3:\"jpg\";i:5;s:5:\"photo\";i:6;s:3:\"png\";i:7;s:10:\"file-image\";i:8;s:10:\"file image\";}}s:17:\"far fa-file-image\";a:2:{s:5:\"label\";s:20:\"File Image (regular)\";s:6:\"search\";a:9:{i:0;s:21:\"Document with Picture\";i:1;s:8:\"document\";i:2;s:5:\"image\";i:3;s:3:\"img\";i:4;s:3:\"jpg\";i:5;s:5:\"photo\";i:6;s:3:\"png\";i:7;s:10:\"file-image\";i:8;s:10:\"file image\";}}s:18:\"fas fa-file-import\";a:2:{s:5:\"label\";s:11:\"File Import\";s:6:\"search\";a:7:{i:0;s:4:\"copy\";i:1;s:8:\"document\";i:2;s:6:\"insert\";i:3;s:4:\"send\";i:4;s:6:\"upload\";i:5;s:11:\"file-import\";i:6;s:11:\"file import\";}}s:19:\"fas fa-file-invoice\";a:2:{s:5:\"label\";s:12:\"File Invoice\";s:6:\"search\";a:8:{i:0;s:7:\"account\";i:1;s:4:\"bill\";i:2;s:6:\"charge\";i:3;s:8:\"document\";i:4;s:7:\"payment\";i:5;s:7:\"receipt\";i:6;s:12:\"file-invoice\";i:7;s:12:\"file invoice\";}}s:26:\"fas fa-file-invoice-dollar\";a:2:{s:5:\"label\";s:19:\"File Invoice Dollar\";s:6:\"search\";a:14:{i:0;s:1:\"$\";i:1;s:7:\"account\";i:2;s:4:\"bill\";i:3;s:6:\"charge\";i:4;s:8:\"document\";i:5;s:11:\"dollar-sign\";i:6;s:5:\"money\";i:7;s:7:\"payment\";i:8;s:7:\"receipt\";i:9;s:7:\"revenue\";i:10;s:6:\"salary\";i:11;s:3:\"usd\";i:12;s:19:\"file-invoice-dollar\";i:13;s:19:\"file invoice dollar\";}}s:17:\"fas fa-file-lines\";a:2:{s:5:\"label\";s:18:\"File Lines (solid)\";s:6:\"search\";a:10:{i:0;s:8:\"Document\";i:1;s:18:\"Document with Text\";i:2;s:8:\"document\";i:3;s:9:\"file-text\";i:4;s:7:\"invoice\";i:5;s:3:\"new\";i:6;s:4:\"page\";i:7;s:3:\"pdf\";i:8;s:10:\"file-lines\";i:9;s:10:\"file lines\";}}s:17:\"far fa-file-lines\";a:2:{s:5:\"label\";s:20:\"File Lines (regular)\";s:6:\"search\";a:10:{i:0;s:8:\"Document\";i:1;s:18:\"Document with Text\";i:2;s:8:\"document\";i:3;s:9:\"file-text\";i:4;s:7:\"invoice\";i:5;s:3:\"new\";i:6;s:4:\"page\";i:7;s:3:\"pdf\";i:8;s:10:\"file-lines\";i:9;s:10:\"file lines\";}}s:19:\"fas fa-file-medical\";a:2:{s:5:\"label\";s:12:\"File Medical\";s:6:\"search\";a:7:{i:0;s:8:\"document\";i:1;s:6:\"health\";i:2;s:7:\"history\";i:3;s:12:\"prescription\";i:4;s:6:\"record\";i:5;s:12:\"file-medical\";i:6;s:12:\"file medical\";}}s:15:\"fas fa-file-pdf\";a:2:{s:5:\"label\";s:16:\"File Pdf (solid)\";s:6:\"search\";a:6:{i:0;s:7:\"acrobat\";i:1;s:8:\"document\";i:2;s:7:\"preview\";i:3;s:4:\"save\";i:4;s:8:\"file-pdf\";i:5;s:8:\"file pdf\";}}s:15:\"far fa-file-pdf\";a:2:{s:5:\"label\";s:18:\"File Pdf (regular)\";s:6:\"search\";a:6:{i:0;s:7:\"acrobat\";i:1;s:8:\"document\";i:2;s:7:\"preview\";i:3;s:4:\"save\";i:4;s:8:\"file-pdf\";i:5;s:8:\"file pdf\";}}s:15:\"fas fa-file-pen\";a:2:{s:5:\"label\";s:8:\"File Pen\";s:6:\"search\";a:9:{i:0;s:4:\"edit\";i:1;s:4:\"memo\";i:2;s:6:\"modify\";i:3;s:3:\"pen\";i:4;s:6:\"pencil\";i:5;s:6:\"update\";i:6;s:5:\"write\";i:7;s:8:\"file-pen\";i:8;s:8:\"file pen\";}}s:22:\"fas fa-file-powerpoint\";a:2:{s:5:\"label\";s:23:\"File Powerpoint (solid)\";s:6:\"search\";a:6:{i:0;s:7:\"display\";i:1;s:8:\"document\";i:2;s:7:\"keynote\";i:3;s:12:\"presentation\";i:4;s:15:\"file-powerpoint\";i:5;s:15:\"file powerpoint\";}}s:22:\"far fa-file-powerpoint\";a:2:{s:5:\"label\";s:25:\"File Powerpoint (regular)\";s:6:\"search\";a:6:{i:0;s:7:\"display\";i:1;s:8:\"document\";i:2;s:7:\"keynote\";i:3;s:12:\"presentation\";i:4;s:15:\"file-powerpoint\";i:5;s:15:\"file powerpoint\";}}s:24:\"fas fa-file-prescription\";a:2:{s:5:\"label\";s:17:\"File Prescription\";s:6:\"search\";a:7:{i:0;s:8:\"document\";i:1;s:5:\"drugs\";i:2;s:7:\"medical\";i:3;s:8:\"medicine\";i:4;s:2:\"rx\";i:5;s:17:\"file-prescription\";i:6;s:17:\"file prescription\";}}s:18:\"fas fa-file-shield\";a:2:{s:5:\"label\";s:11:\"File Shield\";s:6:\"search\";a:9:{i:0;s:9:\"antivirus\";i:1;s:4:\"data\";i:2;s:8:\"document\";i:3;s:7:\"protect\";i:4;s:4:\"safe\";i:5;s:6:\"safety\";i:6;s:6:\"secure\";i:7;s:11:\"file-shield\";i:8;s:11:\"file shield\";}}s:21:\"fas fa-file-signature\";a:2:{s:5:\"label\";s:14:\"File Signature\";s:6:\"search\";a:7:{i:0;s:12:\"John Hancock\";i:1;s:8:\"contract\";i:2;s:8:\"document\";i:3;s:4:\"name\";i:4;s:8:\"username\";i:5;s:14:\"file-signature\";i:6;s:14:\"file signature\";}}s:17:\"fas fa-file-video\";a:2:{s:5:\"label\";s:18:\"File Video (solid)\";s:6:\"search\";a:7:{i:0;s:8:\"document\";i:1;s:3:\"m4v\";i:2;s:5:\"movie\";i:3;s:3:\"mp4\";i:4;s:4:\"play\";i:5;s:10:\"file-video\";i:6;s:10:\"file video\";}}s:17:\"far fa-file-video\";a:2:{s:5:\"label\";s:20:\"File Video (regular)\";s:6:\"search\";a:7:{i:0;s:8:\"document\";i:1;s:3:\"m4v\";i:2;s:5:\"movie\";i:3;s:3:\"mp4\";i:4;s:4:\"play\";i:5;s:10:\"file-video\";i:6;s:10:\"file video\";}}s:20:\"fas fa-file-waveform\";a:2:{s:5:\"label\";s:13:\"File Waveform\";s:6:\"search\";a:7:{i:0;s:8:\"document\";i:1;s:6:\"health\";i:2;s:7:\"history\";i:3;s:12:\"prescription\";i:4;s:6:\"record\";i:5;s:13:\"file-waveform\";i:6;s:13:\"file waveform\";}}s:16:\"fas fa-file-word\";a:2:{s:5:\"label\";s:17:\"File Word (solid)\";s:6:\"search\";a:7:{i:0;s:8:\"document\";i:1;s:4:\"edit\";i:2;s:4:\"page\";i:3;s:4:\"text\";i:4;s:7:\"writing\";i:5;s:9:\"file-word\";i:6;s:9:\"file word\";}}s:16:\"far fa-file-word\";a:2:{s:5:\"label\";s:19:\"File Word (regular)\";s:6:\"search\";a:7:{i:0;s:8:\"document\";i:1;s:4:\"edit\";i:2;s:4:\"page\";i:3;s:4:\"text\";i:4;s:7:\"writing\";i:5;s:9:\"file-word\";i:6;s:9:\"file word\";}}s:18:\"fas fa-file-zipper\";a:2:{s:5:\"label\";s:19:\"File Zipper (solid)\";s:6:\"search\";a:8:{i:0;s:4:\".zip\";i:1;s:6:\"bundle\";i:2;s:8:\"compress\";i:3;s:11:\"compression\";i:4;s:8:\"download\";i:5;s:3:\"zip\";i:6;s:11:\"file-zipper\";i:7;s:11:\"file zipper\";}}s:18:\"far fa-file-zipper\";a:2:{s:5:\"label\";s:21:\"File Zipper (regular)\";s:6:\"search\";a:8:{i:0;s:4:\".zip\";i:1;s:6:\"bundle\";i:2;s:8:\"compress\";i:3;s:11:\"compression\";i:4;s:8:\"download\";i:5;s:3:\"zip\";i:6;s:11:\"file-zipper\";i:7;s:11:\"file zipper\";}}s:11:\"fas fa-fill\";a:2:{s:5:\"label\";s:4:\"Fill\";s:6:\"search\";a:5:{i:0;s:6:\"bucket\";i:1;s:5:\"color\";i:2;s:5:\"paint\";i:3;s:12:\"paint bucket\";i:4;s:4:\"fill\";}}s:16:\"fas fa-fill-drip\";a:2:{s:5:\"label\";s:9:\"Fill Drip\";s:6:\"search\";a:8:{i:0;s:6:\"bucket\";i:1;s:5:\"color\";i:2;s:4:\"drop\";i:3;s:5:\"paint\";i:4;s:12:\"paint bucket\";i:5;s:5:\"spill\";i:6;s:9:\"fill-drip\";i:7;s:9:\"fill drip\";}}s:11:\"fas fa-film\";a:2:{s:5:\"label\";s:4:\"Film\";s:6:\"search\";a:7:{i:0;s:6:\"cinema\";i:1;s:4:\"film\";i:2;s:11:\"film frames\";i:3;s:6:\"frames\";i:4;s:5:\"movie\";i:5;s:5:\"strip\";i:6;s:5:\"video\";}}s:13:\"fas fa-filter\";a:2:{s:5:\"label\";s:6:\"Filter\";s:6:\"search\";a:5:{i:0;s:6:\"funnel\";i:1;s:7:\"options\";i:2;s:8:\"separate\";i:3;s:4:\"sort\";i:4;s:6:\"filter\";}}s:27:\"fas fa-filter-circle-dollar\";a:2:{s:5:\"label\";s:20:\"Filter Circle Dollar\";s:6:\"search\";a:8:{i:0;s:6:\"filter\";i:1;s:5:\"money\";i:2;s:7:\"options\";i:3;s:7:\"premium\";i:4;s:8:\"separate\";i:5;s:4:\"sort\";i:6;s:20:\"filter-circle-dollar\";i:7;s:20:\"filter circle dollar\";}}s:26:\"fas fa-filter-circle-xmark\";a:2:{s:5:\"label\";s:19:\"Filter Circle Xmark\";s:6:\"search\";a:9:{i:0;s:6:\"cancel\";i:1;s:6:\"funnel\";i:2;s:7:\"options\";i:3;s:6:\"remove\";i:4;s:8:\"separate\";i:5;s:4:\"sort\";i:6;s:7:\"uncheck\";i:7;s:19:\"filter-circle-xmark\";i:8;s:19:\"filter circle xmark\";}}s:18:\"fas fa-fingerprint\";a:2:{s:5:\"label\";s:11:\"Fingerprint\";s:6:\"search\";a:10:{i:0;s:5:\"human\";i:1;s:2:\"id\";i:2;s:14:\"identification\";i:3;s:4:\"lock\";i:4;s:7:\"privacy\";i:5;s:6:\"smudge\";i:6;s:5:\"touch\";i:7;s:6:\"unique\";i:8;s:6:\"unlock\";i:9;s:11:\"fingerprint\";}}s:11:\"fas fa-fire\";a:2:{s:5:\"label\";s:4:\"Fire\";s:6:\"search\";a:8:{i:0;s:4:\"burn\";i:1;s:8:\"caliente\";i:2;s:4:\"fire\";i:3;s:5:\"flame\";i:4;s:4:\"heat\";i:5;s:3:\"hot\";i:6;s:7:\"popular\";i:7;s:4:\"tool\";}}s:18:\"fas fa-fire-burner\";a:2:{s:5:\"label\";s:11:\"Fire Burner\";s:6:\"search\";a:7:{i:0;s:4:\"cook\";i:1;s:4:\"fire\";i:2;s:5:\"flame\";i:3;s:7:\"kitchen\";i:4;s:5:\"stove\";i:5;s:11:\"fire-burner\";i:6;s:11:\"fire burner\";}}s:24:\"fas fa-fire-extinguisher\";a:2:{s:5:\"label\";s:17:\"Fire Extinguisher\";s:6:\"search\";a:12:{i:0;s:4:\"burn\";i:1;s:8:\"caliente\";i:2;s:10:\"extinguish\";i:3;s:4:\"fire\";i:4;s:17:\"fire extinguisher\";i:5;s:12:\"fire fighter\";i:6;s:5:\"flame\";i:7;s:4:\"heat\";i:8;s:3:\"hot\";i:9;s:6:\"quench\";i:10;s:6:\"rescue\";i:11;s:17:\"fire-extinguisher\";}}s:24:\"fas fa-fire-flame-curved\";a:2:{s:5:\"label\";s:17:\"Fire Flame Curved\";s:6:\"search\";a:8:{i:0;s:4:\"burn\";i:1;s:8:\"caliente\";i:2;s:5:\"flame\";i:3;s:4:\"heat\";i:4;s:3:\"hot\";i:5;s:7:\"popular\";i:6;s:17:\"fire-flame-curved\";i:7;s:17:\"fire flame curved\";}}s:24:\"fas fa-fire-flame-simple\";a:2:{s:5:\"label\";s:17:\"Fire Flame Simple\";s:6:\"search\";a:9:{i:0;s:8:\"caliente\";i:1;s:6:\"energy\";i:2;s:4:\"fire\";i:3;s:5:\"flame\";i:4;s:3:\"gas\";i:5;s:4:\"heat\";i:6;s:3:\"hot\";i:7;s:17:\"fire-flame-simple\";i:8;s:17:\"fire flame simple\";}}s:14:\"fab fa-firefox\";a:2:{s:5:\"label\";s:7:\"Firefox\";s:6:\"search\";a:2:{i:0;s:7:\"browser\";i:1;s:7:\"firefox\";}}s:22:\"fab fa-firefox-browser\";a:2:{s:5:\"label\";s:15:\"Firefox Browser\";s:6:\"search\";a:3:{i:0;s:7:\"browser\";i:1;s:15:\"firefox-browser\";i:2;s:15:\"firefox browser\";}}s:18:\"fab fa-first-order\";a:2:{s:5:\"label\";s:11:\"First Order\";s:6:\"search\";a:2:{i:0;s:11:\"first-order\";i:1;s:11:\"first order\";}}s:22:\"fab fa-first-order-alt\";a:2:{s:5:\"label\";s:21:\"Alternate First Order\";s:6:\"search\";a:2:{i:0;s:15:\"first-order-alt\";i:1;s:21:\"alternate first order\";}}s:17:\"fab fa-firstdraft\";a:2:{s:5:\"label\";s:10:\"firstdraft\";s:6:\"search\";a:1:{i:0;s:10:\"firstdraft\";}}s:11:\"fas fa-fish\";a:2:{s:5:\"label\";s:4:\"Fish\";s:6:\"search\";a:7:{i:0;s:6:\"Pisces\";i:1;s:5:\"fauna\";i:2;s:4:\"fish\";i:3;s:4:\"gold\";i:4;s:7:\"seafood\";i:5;s:8:\"swimming\";i:6;s:6:\"zodiac\";}}s:16:\"fas fa-fish-fins\";a:2:{s:5:\"label\";s:9:\"Fish Fins\";s:6:\"search\";a:6:{i:0;s:4:\"fish\";i:1;s:7:\"fishery\";i:2;s:6:\"pisces\";i:3;s:7:\"seafood\";i:4;s:9:\"fish-fins\";i:5;s:9:\"fish fins\";}}s:11:\"fas fa-flag\";a:2:{s:5:\"label\";s:12:\"Flag (solid)\";s:6:\"search\";a:10:{i:0;s:10:\"black flag\";i:1;s:7:\"country\";i:2;s:6:\"notice\";i:3;s:12:\"notification\";i:4;s:6:\"notify\";i:5;s:4:\"pole\";i:6;s:6:\"report\";i:7;s:6:\"symbol\";i:8;s:6:\"waving\";i:9;s:4:\"flag\";}}s:11:\"far fa-flag\";a:2:{s:5:\"label\";s:14:\"Flag (regular)\";s:6:\"search\";a:10:{i:0;s:10:\"black flag\";i:1;s:7:\"country\";i:2;s:6:\"notice\";i:3;s:12:\"notification\";i:4;s:6:\"notify\";i:5;s:4:\"pole\";i:6;s:6:\"report\";i:7;s:6:\"symbol\";i:8;s:6:\"waving\";i:9;s:4:\"flag\";}}s:21:\"fas fa-flag-checkered\";a:2:{s:5:\"label\";s:14:\"Flag Checkered\";s:6:\"search\";a:15:{i:0;s:9:\"checkered\";i:1;s:9:\"chequered\";i:2;s:14:\"chequered flag\";i:3;s:6:\"finish\";i:4;s:6:\"notice\";i:5;s:12:\"notification\";i:6;s:6:\"notify\";i:7;s:4:\"pole\";i:8;s:6:\"racing\";i:9;s:6:\"report\";i:10;s:5:\"start\";i:11;s:6:\"symbol\";i:12;s:3:\"win\";i:13;s:14:\"flag-checkered\";i:14;s:14:\"flag checkered\";}}s:15:\"fas fa-flag-usa\";a:2:{s:5:\"label\";s:8:\"Flag Usa\";s:6:\"search\";a:10:{i:0;s:10:\"betsy ross\";i:1;s:7:\"country\";i:2;s:3:\"fla\";i:3;s:19:\"flag: United States\";i:4;s:9:\"old glory\";i:5;s:5:\"stars\";i:6;s:7:\"stripes\";i:7;s:6:\"symbol\";i:8;s:8:\"flag-usa\";i:9;s:8:\"flag usa\";}}s:12:\"fas fa-flask\";a:2:{s:5:\"label\";s:5:\"Flask\";s:6:\"search\";a:11:{i:0;s:6:\"beaker\";i:1;s:9:\"chemicals\";i:2;s:10:\"experiment\";i:3;s:12:\"experimental\";i:4;s:9:\"knowledge\";i:5;s:4:\"labs\";i:6;s:6:\"liquid\";i:7;s:6:\"potion\";i:8;s:7:\"science\";i:9;s:4:\"vial\";i:10;s:5:\"flask\";}}s:17:\"fas fa-flask-vial\";a:2:{s:5:\"label\";s:10:\"Flask Vial\";s:6:\"search\";a:17:{i:0;s:7:\" beaker\";i:1;s:10:\" chemicals\";i:2;s:11:\" experiment\";i:3;s:13:\" experimental\";i:4;s:5:\" labs\";i:5;s:7:\" liquid\";i:6;s:8:\" science\";i:7;s:5:\" vial\";i:8;s:6:\"ampule\";i:9;s:9:\"chemistry\";i:10;s:3:\"lab\";i:11;s:10:\"laboratory\";i:12;s:6:\"potion\";i:13;s:4:\"test\";i:14;s:9:\"test tube\";i:15;s:10:\"flask-vial\";i:16;s:10:\"flask vial\";}}s:13:\"fab fa-flickr\";a:2:{s:5:\"label\";s:6:\"Flickr\";s:6:\"search\";a:1:{i:0;s:6:\"flickr\";}}s:16:\"fab fa-flipboard\";a:2:{s:5:\"label\";s:9:\"Flipboard\";s:6:\"search\";a:1:{i:0;s:9:\"flipboard\";}}s:18:\"fas fa-floppy-disk\";a:2:{s:5:\"label\";s:19:\"Floppy Disk (solid)\";s:6:\"search\";a:8:{i:0;s:28:\"Black Hard Shell Floppy Disk\";i:1;s:8:\"computer\";i:2;s:4:\"disk\";i:3;s:8:\"download\";i:4;s:6:\"floppy\";i:5;s:11:\"floppy disk\";i:6;s:8:\"floppy-o\";i:7;s:11:\"floppy-disk\";}}s:18:\"far fa-floppy-disk\";a:2:{s:5:\"label\";s:21:\"Floppy Disk (regular)\";s:6:\"search\";a:8:{i:0;s:28:\"Black Hard Shell Floppy Disk\";i:1;s:8:\"computer\";i:2;s:4:\"disk\";i:3;s:8:\"download\";i:4;s:6:\"floppy\";i:5;s:11:\"floppy disk\";i:6;s:8:\"floppy-o\";i:7;s:11:\"floppy-disk\";}}s:18:\"fas fa-florin-sign\";a:2:{s:5:\"label\";s:11:\"Florin Sign\";s:6:\"search\";a:3:{i:0;s:8:\"currency\";i:1;s:11:\"florin-sign\";i:2;s:11:\"florin sign\";}}s:10:\"fab fa-fly\";a:2:{s:5:\"label\";s:3:\"Fly\";s:6:\"search\";a:1:{i:0;s:3:\"fly\";}}s:13:\"fas fa-folder\";a:2:{s:5:\"label\";s:14:\"Folder (solid)\";s:6:\"search\";a:7:{i:0;s:12:\"Black Folder\";i:1;s:7:\"archive\";i:2;s:9:\"directory\";i:3;s:8:\"document\";i:4;s:4:\"file\";i:5;s:11:\"file folder\";i:6;s:6:\"folder\";}}s:13:\"far fa-folder\";a:2:{s:5:\"label\";s:16:\"Folder (regular)\";s:6:\"search\";a:7:{i:0;s:12:\"Black Folder\";i:1;s:7:\"archive\";i:2;s:9:\"directory\";i:3;s:8:\"document\";i:4;s:4:\"file\";i:5;s:11:\"file folder\";i:6;s:6:\"folder\";}}s:20:\"fas fa-folder-closed\";a:2:{s:5:\"label\";s:21:\"Folder Closed (solid)\";s:6:\"search\";a:3:{i:0;s:4:\"file\";i:1;s:13:\"folder-closed\";i:2;s:13:\"folder closed\";}}s:20:\"far fa-folder-closed\";a:2:{s:5:\"label\";s:23:\"Folder Closed (regular)\";s:6:\"search\";a:3:{i:0;s:4:\"file\";i:1;s:13:\"folder-closed\";i:2;s:13:\"folder closed\";}}s:19:\"fas fa-folder-minus\";a:2:{s:5:\"label\";s:12:\"Folder Minus\";s:6:\"search\";a:9:{i:0;s:7:\"archive\";i:1;s:6:\"delete\";i:2;s:9:\"directory\";i:3;s:8:\"document\";i:4;s:4:\"file\";i:5;s:8:\"negative\";i:6;s:6:\"remove\";i:7;s:12:\"folder-minus\";i:8;s:12:\"folder minus\";}}s:18:\"fas fa-folder-open\";a:2:{s:5:\"label\";s:19:\"Folder Open (solid)\";s:6:\"search\";a:12:{i:0;s:11:\"Open Folder\";i:1;s:7:\"archive\";i:2;s:9:\"directory\";i:3;s:8:\"document\";i:4;s:5:\"empty\";i:5;s:4:\"file\";i:6;s:6:\"folder\";i:7;s:3:\"new\";i:8;s:4:\"open\";i:9;s:16:\"open file folder\";i:10;s:11:\"folder-open\";i:11;s:11:\"folder open\";}}s:18:\"far fa-folder-open\";a:2:{s:5:\"label\";s:21:\"Folder Open (regular)\";s:6:\"search\";a:12:{i:0;s:11:\"Open Folder\";i:1;s:7:\"archive\";i:2;s:9:\"directory\";i:3;s:8:\"document\";i:4;s:5:\"empty\";i:5;s:4:\"file\";i:6;s:6:\"folder\";i:7;s:3:\"new\";i:8;s:4:\"open\";i:9;s:16:\"open file folder\";i:10;s:11:\"folder-open\";i:11;s:11:\"folder open\";}}s:18:\"fas fa-folder-plus\";a:2:{s:5:\"label\";s:11:\"Folder Plus\";s:6:\"search\";a:10:{i:0;s:3:\"add\";i:1;s:7:\"archive\";i:2;s:6:\"create\";i:3;s:9:\"directory\";i:4;s:8:\"document\";i:5;s:4:\"file\";i:6;s:3:\"new\";i:7;s:8:\"positive\";i:8;s:11:\"folder-plus\";i:9;s:11:\"folder plus\";}}s:18:\"fas fa-folder-tree\";a:2:{s:5:\"label\";s:11:\"Folder Tree\";s:6:\"search\";a:8:{i:0;s:7:\"archive\";i:1;s:9:\"directory\";i:2;s:8:\"document\";i:3;s:4:\"file\";i:4;s:6:\"search\";i:5;s:9:\"structure\";i:6;s:11:\"folder-tree\";i:7;s:11:\"folder tree\";}}s:11:\"fas fa-font\";a:2:{s:5:\"label\";s:4:\"Font\";s:6:\"search\";a:6:{i:0;s:8:\"alphabet\";i:1;s:5:\"glyph\";i:2;s:4:\"text\";i:3;s:4:\"type\";i:4;s:8:\"typeface\";i:5;s:4:\"font\";}}s:19:\"fas fa-font-awesome\";a:2:{s:5:\"label\";s:20:\"Font Awesome (solid)\";s:6:\"search\";a:7:{i:0;s:7:\"awesome\";i:1;s:4:\"flag\";i:2;s:4:\"font\";i:3;s:5:\"icons\";i:4;s:8:\"typeface\";i:5;s:12:\"font-awesome\";i:6;s:12:\"font awesome\";}}s:19:\"far fa-font-awesome\";a:2:{s:5:\"label\";s:22:\"Font Awesome (regular)\";s:6:\"search\";a:7:{i:0;s:7:\"awesome\";i:1;s:4:\"flag\";i:2;s:4:\"font\";i:3;s:5:\"icons\";i:4;s:8:\"typeface\";i:5;s:12:\"font-awesome\";i:6;s:12:\"font awesome\";}}s:19:\"fab fa-font-awesome\";a:2:{s:5:\"label\";s:21:\"Font Awesome (brands)\";s:6:\"search\";a:7:{i:0;s:7:\"awesome\";i:1;s:4:\"flag\";i:2;s:4:\"font\";i:3;s:5:\"icons\";i:4;s:8:\"typeface\";i:5;s:12:\"font-awesome\";i:6;s:12:\"font awesome\";}}s:16:\"fab fa-fonticons\";a:2:{s:5:\"label\";s:9:\"Fonticons\";s:6:\"search\";a:1:{i:0;s:9:\"fonticons\";}}s:19:\"fab fa-fonticons-fi\";a:2:{s:5:\"label\";s:12:\"Fonticons Fi\";s:6:\"search\";a:2:{i:0;s:12:\"fonticons-fi\";i:1;s:12:\"fonticons fi\";}}s:15:\"fas fa-football\";a:2:{s:5:\"label\";s:8:\"Football\";s:6:\"search\";a:8:{i:0;s:8:\"american\";i:1;s:17:\"american football\";i:2;s:4:\"ball\";i:3;s:4:\"fall\";i:4;s:8:\"football\";i:5;s:3:\"nfl\";i:6;s:7:\"pigskin\";i:7;s:8:\"seasonal\";}}s:19:\"fab fa-fort-awesome\";a:2:{s:5:\"label\";s:12:\"Fort Awesome\";s:6:\"search\";a:3:{i:0;s:6:\"castle\";i:1;s:12:\"fort-awesome\";i:2;s:12:\"fort awesome\";}}s:23:\"fab fa-fort-awesome-alt\";a:2:{s:5:\"label\";s:22:\"Alternate Fort Awesome\";s:6:\"search\";a:3:{i:0;s:6:\"castle\";i:1;s:16:\"fort-awesome-alt\";i:2;s:22:\"alternate fort awesome\";}}s:15:\"fab fa-forumbee\";a:2:{s:5:\"label\";s:8:\"Forumbee\";s:6:\"search\";a:1:{i:0;s:8:\"forumbee\";}}s:14:\"fas fa-forward\";a:2:{s:5:\"label\";s:7:\"Forward\";s:6:\"search\";a:7:{i:0;s:5:\"arrow\";i:1;s:6:\"double\";i:2;s:4:\"fast\";i:3;s:19:\"fast-forward button\";i:4;s:7:\"forward\";i:5;s:4:\"next\";i:6;s:4:\"skip\";}}s:19:\"fas fa-forward-fast\";a:2:{s:5:\"label\";s:12:\"Forward Fast\";s:6:\"search\";a:11:{i:0;s:5:\"arrow\";i:1;s:3:\"end\";i:2;s:4:\"last\";i:3;s:4:\"next\";i:4;s:10:\"next scene\";i:5;s:10:\"next track\";i:6;s:17:\"next track button\";i:7;s:5:\"quick\";i:8;s:8:\"triangle\";i:9;s:12:\"forward-fast\";i:10;s:12:\"forward fast\";}}s:19:\"fas fa-forward-step\";a:2:{s:5:\"label\";s:12:\"Forward Step\";s:6:\"search\";a:5:{i:0;s:3:\"end\";i:1;s:4:\"last\";i:2;s:4:\"next\";i:3;s:12:\"forward-step\";i:4;s:12:\"forward step\";}}s:17:\"fab fa-foursquare\";a:2:{s:5:\"label\";s:10:\"Foursquare\";s:6:\"search\";a:1:{i:0;s:10:\"foursquare\";}}s:17:\"fas fa-franc-sign\";a:2:{s:5:\"label\";s:10:\"Franc Sign\";s:6:\"search\";a:4:{i:0;s:17:\"French Franc Sign\";i:1;s:8:\"currency\";i:2;s:10:\"franc-sign\";i:3;s:10:\"franc sign\";}}s:21:\"fab fa-free-code-camp\";a:2:{s:5:\"label\";s:12:\"freeCodeCamp\";s:6:\"search\";a:2:{i:0;s:14:\"free-code-camp\";i:1;s:12:\"freecodecamp\";}}s:14:\"fab fa-freebsd\";a:2:{s:5:\"label\";s:7:\"FreeBSD\";s:6:\"search\";a:1:{i:0;s:7:\"freebsd\";}}s:11:\"fas fa-frog\";a:2:{s:5:\"label\";s:4:\"Frog\";s:6:\"search\";a:11:{i:0;s:9:\"amphibian\";i:1;s:8:\"bullfrog\";i:2;s:5:\"fauna\";i:3;s:3:\"hop\";i:4;s:6:\"kermit\";i:5;s:4:\"kiss\";i:6;s:6:\"prince\";i:7;s:6:\"ribbit\";i:8;s:4:\"toad\";i:9;s:4:\"wart\";i:10;s:4:\"frog\";}}s:14:\"fab fa-fulcrum\";a:2:{s:5:\"label\";s:7:\"Fulcrum\";s:6:\"search\";a:1:{i:0;s:7:\"fulcrum\";}}s:13:\"fas fa-futbol\";a:2:{s:5:\"label\";s:14:\"Futbol (solid)\";s:6:\"search\";a:6:{i:0;s:4:\"ball\";i:1;s:8:\"football\";i:2;s:3:\"mls\";i:3;s:6:\"soccer\";i:4;s:11:\"soccer ball\";i:5;s:6:\"futbol\";}}s:13:\"far fa-futbol\";a:2:{s:5:\"label\";s:16:\"Futbol (regular)\";s:6:\"search\";a:6:{i:0;s:4:\"ball\";i:1;s:8:\"football\";i:2;s:3:\"mls\";i:3;s:6:\"soccer\";i:4;s:11:\"soccer ball\";i:5;s:6:\"futbol\";}}s:8:\"fas fa-g\";a:2:{s:5:\"label\";s:1:\"G\";s:6:\"search\";a:4:{i:0;s:22:\"Latin Capital Letter G\";i:1;s:20:\"Latin Small Letter G\";i:2;s:6:\"letter\";i:3;s:1:\"g\";}}s:24:\"fab fa-galactic-republic\";a:2:{s:5:\"label\";s:17:\"Galactic Republic\";s:6:\"search\";a:4:{i:0;s:8:\"politics\";i:1;s:9:\"star wars\";i:2;s:17:\"galactic-republic\";i:3;s:17:\"galactic republic\";}}s:22:\"fab fa-galactic-senate\";a:2:{s:5:\"label\";s:15:\"Galactic Senate\";s:6:\"search\";a:3:{i:0;s:9:\"star wars\";i:1;s:15:\"galactic-senate\";i:2;s:15:\"galactic senate\";}}s:14:\"fas fa-gamepad\";a:2:{s:5:\"label\";s:7:\"Gamepad\";s:6:\"search\";a:8:{i:0;s:6:\"arcade\";i:1;s:10:\"controller\";i:2;s:5:\"d-pad\";i:3;s:8:\"joystick\";i:4;s:9:\"playstore\";i:5;s:5:\"video\";i:6;s:10:\"video game\";i:7;s:7:\"gamepad\";}}s:15:\"fas fa-gas-pump\";a:2:{s:5:\"label\";s:8:\"Gas Pump\";s:6:\"search\";a:12:{i:0;s:3:\"car\";i:1;s:6:\"diesel\";i:2;s:4:\"fuel\";i:3;s:9:\"fuel pump\";i:4;s:8:\"fuelpump\";i:5;s:3:\"gas\";i:6;s:8:\"gasoline\";i:7;s:6:\"petrol\";i:8;s:4:\"pump\";i:9;s:7:\"station\";i:10;s:8:\"gas-pump\";i:11;s:8:\"gas pump\";}}s:12:\"fas fa-gauge\";a:2:{s:5:\"label\";s:5:\"Gauge\";s:6:\"search\";a:6:{i:0;s:9:\"dashboard\";i:1;s:4:\"fast\";i:2;s:8:\"odometer\";i:3;s:5:\"speed\";i:4;s:11:\"speedometer\";i:5;s:5:\"gauge\";}}s:17:\"fas fa-gauge-high\";a:2:{s:5:\"label\";s:10:\"Gauge High\";s:6:\"search\";a:8:{i:0;s:9:\"dashboard\";i:1;s:4:\"fast\";i:2;s:8:\"odometer\";i:3;s:5:\"quick\";i:4;s:5:\"speed\";i:5;s:11:\"speedometer\";i:6;s:10:\"gauge-high\";i:7;s:10:\"gauge high\";}}s:19:\"fas fa-gauge-simple\";a:2:{s:5:\"label\";s:12:\"Gauge Simple\";s:6:\"search\";a:7:{i:0;s:9:\"dashboard\";i:1;s:4:\"fast\";i:2;s:8:\"odometer\";i:3;s:5:\"speed\";i:4;s:11:\"speedometer\";i:5;s:12:\"gauge-simple\";i:6;s:12:\"gauge simple\";}}s:24:\"fas fa-gauge-simple-high\";a:2:{s:5:\"label\";s:17:\"Gauge Simple High\";s:6:\"search\";a:8:{i:0;s:9:\"dashboard\";i:1;s:4:\"fast\";i:2;s:8:\"odometer\";i:3;s:5:\"quick\";i:4;s:5:\"speed\";i:5;s:11:\"speedometer\";i:6;s:17:\"gauge-simple-high\";i:7;s:17:\"gauge simple high\";}}s:12:\"fas fa-gavel\";a:2:{s:5:\"label\";s:5:\"Gavel\";s:6:\"search\";a:6:{i:0;s:6:\"hammer\";i:1;s:5:\"judge\";i:2;s:3:\"law\";i:3;s:6:\"lawyer\";i:4;s:7:\"opinion\";i:5;s:5:\"gavel\";}}s:11:\"fas fa-gear\";a:2:{s:5:\"label\";s:4:\"Gear\";s:6:\"search\";a:10:{i:0;s:3:\"cog\";i:1;s:8:\"cogwheel\";i:2;s:13:\"configuration\";i:3;s:4:\"gear\";i:4;s:10:\"mechanical\";i:5;s:6:\"modify\";i:6;s:8:\"settings\";i:7;s:8:\"sprocket\";i:8;s:4:\"tool\";i:9;s:5:\"wheel\";}}s:12:\"fas fa-gears\";a:2:{s:5:\"label\";s:5:\"Gears\";s:6:\"search\";a:7:{i:0;s:13:\"configuration\";i:1;s:5:\"gears\";i:2;s:10:\"mechanical\";i:3;s:6:\"modify\";i:4;s:8:\"settings\";i:5;s:8:\"sprocket\";i:6;s:5:\"wheel\";}}s:10:\"fas fa-gem\";a:2:{s:5:\"label\";s:11:\"Gem (solid)\";s:6:\"search\";a:8:{i:0;s:7:\"diamond\";i:1;s:3:\"gem\";i:2;s:9:\"gem stone\";i:3;s:5:\"jewel\";i:4;s:7:\"jewelry\";i:5;s:8:\"sapphire\";i:6;s:5:\"stone\";i:7;s:8:\"treasure\";}}s:10:\"far fa-gem\";a:2:{s:5:\"label\";s:13:\"Gem (regular)\";s:6:\"search\";a:8:{i:0;s:7:\"diamond\";i:1;s:3:\"gem\";i:2;s:9:\"gem stone\";i:3;s:5:\"jewel\";i:4;s:7:\"jewelry\";i:5;s:8:\"sapphire\";i:6;s:5:\"stone\";i:7;s:8:\"treasure\";}}s:17:\"fas fa-genderless\";a:2:{s:5:\"label\";s:10:\"Genderless\";s:6:\"search\";a:5:{i:0;s:11:\"androgynous\";i:1;s:7:\"asexual\";i:2;s:6:\"gender\";i:3;s:7:\"sexless\";i:4;s:10:\"genderless\";}}s:17:\"fab fa-get-pocket\";a:2:{s:5:\"label\";s:10:\"Get Pocket\";s:6:\"search\";a:2:{i:0;s:10:\"get-pocket\";i:1;s:10:\"get pocket\";}}s:9:\"fab fa-gg\";a:2:{s:5:\"label\";s:11:\"GG Currency\";s:6:\"search\";a:2:{i:0;s:2:\"gg\";i:1;s:11:\"gg currency\";}}s:16:\"fab fa-gg-circle\";a:2:{s:5:\"label\";s:18:\"GG Currency Circle\";s:6:\"search\";a:2:{i:0;s:9:\"gg-circle\";i:1;s:18:\"gg currency circle\";}}s:12:\"fas fa-ghost\";a:2:{s:5:\"label\";s:5:\"Ghost\";s:6:\"search\";a:16:{i:0;s:10:\"apparition\";i:1;s:6:\"blinky\";i:2;s:5:\"clyde\";i:3;s:8:\"creature\";i:4;s:4:\"face\";i:5;s:10:\"fairy tale\";i:6;s:7:\"fantasy\";i:7;s:8:\"floating\";i:8;s:5:\"ghost\";i:9;s:9:\"halloween\";i:10;s:7:\"holiday\";i:11;s:4:\"inky\";i:12;s:7:\"monster\";i:13;s:6:\"pacman\";i:14;s:5:\"pinky\";i:15;s:6:\"spirit\";}}s:11:\"fas fa-gift\";a:2:{s:5:\"label\";s:4:\"Gift\";s:6:\"search\";a:12:{i:0;s:3:\"box\";i:1;s:11:\"celebration\";i:2;s:9:\"christmas\";i:3;s:10:\"generosity\";i:4;s:4:\"gift\";i:5;s:6:\"giving\";i:6;s:7:\"holiday\";i:7;s:5:\"party\";i:8;s:7:\"present\";i:9;s:7:\"wrapped\";i:10;s:12:\"wrapped gift\";i:11;s:4:\"xmas\";}}s:12:\"fas fa-gifts\";a:2:{s:5:\"label\";s:5:\"Gifts\";s:6:\"search\";a:9:{i:0;s:9:\"christmas\";i:1;s:10:\"generosity\";i:2;s:6:\"giving\";i:3;s:7:\"holiday\";i:4;s:5:\"party\";i:5;s:7:\"present\";i:6;s:7:\"wrapped\";i:7;s:4:\"xmas\";i:8;s:5:\"gifts\";}}s:10:\"fab fa-git\";a:2:{s:5:\"label\";s:3:\"Git\";s:6:\"search\";a:1:{i:0;s:3:\"git\";}}s:14:\"fab fa-git-alt\";a:2:{s:5:\"label\";s:7:\"Git Alt\";s:6:\"search\";a:2:{i:0;s:7:\"git-alt\";i:1;s:7:\"git alt\";}}s:13:\"fab fa-github\";a:2:{s:5:\"label\";s:6:\"GitHub\";s:6:\"search\";a:2:{i:0;s:7:\"octocat\";i:1;s:6:\"github\";}}s:17:\"fab fa-github-alt\";a:2:{s:5:\"label\";s:16:\"Alternate GitHub\";s:6:\"search\";a:3:{i:0;s:7:\"octocat\";i:1;s:10:\"github-alt\";i:2;s:16:\"alternate github\";}}s:16:\"fab fa-gitkraken\";a:2:{s:5:\"label\";s:9:\"GitKraken\";s:6:\"search\";a:1:{i:0;s:9:\"gitkraken\";}}s:13:\"fab fa-gitlab\";a:2:{s:5:\"label\";s:6:\"GitLab\";s:6:\"search\";a:2:{i:0;s:7:\"Axosoft\";i:1;s:6:\"gitlab\";}}s:13:\"fab fa-gitter\";a:2:{s:5:\"label\";s:6:\"Gitter\";s:6:\"search\";a:1:{i:0;s:6:\"gitter\";}}s:18:\"fas fa-glass-water\";a:2:{s:5:\"label\";s:11:\"Glass Water\";s:6:\"search\";a:4:{i:0;s:7:\"potable\";i:1;s:5:\"water\";i:2;s:11:\"glass-water\";i:3;s:11:\"glass water\";}}s:26:\"fas fa-glass-water-droplet\";a:2:{s:5:\"label\";s:19:\"Glass Water Droplet\";s:6:\"search\";a:4:{i:0;s:7:\"potable\";i:1;s:5:\"water\";i:2;s:19:\"glass-water-droplet\";i:3;s:19:\"glass water droplet\";}}s:14:\"fas fa-glasses\";a:2:{s:5:\"label\";s:7:\"Glasses\";s:6:\"search\";a:7:{i:0;s:7:\"hipster\";i:1;s:4:\"nerd\";i:2;s:7:\"reading\";i:3;s:5:\"sight\";i:4;s:10:\"spectacles\";i:5;s:6:\"vision\";i:6;s:7:\"glasses\";}}s:12:\"fab fa-glide\";a:2:{s:5:\"label\";s:5:\"Glide\";s:6:\"search\";a:1:{i:0;s:5:\"glide\";}}s:14:\"fab fa-glide-g\";a:2:{s:5:\"label\";s:7:\"Glide G\";s:6:\"search\";a:2:{i:0;s:7:\"glide-g\";i:1;s:7:\"glide g\";}}s:12:\"fas fa-globe\";a:2:{s:5:\"label\";s:5:\"Globe\";s:6:\"search\";a:22:{i:0;s:3:\"all\";i:1;s:11:\"coordinates\";i:2;s:7:\"country\";i:3;s:5:\"earth\";i:4;s:6:\"global\";i:5;s:5:\"globe\";i:6;s:20:\"globe with meridians\";i:7;s:3:\"gps\";i:8;s:8:\"internet\";i:9;s:8:\"language\";i:10;s:8:\"localize\";i:11;s:8:\"location\";i:12;s:3:\"map\";i:13;s:9:\"meridians\";i:14;s:7:\"network\";i:15;s:6:\"online\";i:16;s:5:\"place\";i:17;s:6:\"planet\";i:18;s:9:\"translate\";i:19;s:6:\"travel\";i:20;s:5:\"world\";i:21;s:3:\"www\";}}s:13:\"fab fa-gofore\";a:2:{s:5:\"label\";s:6:\"Gofore\";s:6:\"search\";a:1:{i:0;s:6:\"gofore\";}}s:13:\"fab fa-golang\";a:2:{s:5:\"label\";s:2:\"Go\";s:6:\"search\";a:2:{i:0;s:6:\"golang\";i:1;s:2:\"go\";}}s:20:\"fas fa-golf-ball-tee\";a:2:{s:5:\"label\";s:13:\"Golf Ball Tee\";s:6:\"search\";a:6:{i:0;s:5:\"caddy\";i:1;s:5:\"eagle\";i:2;s:4:\"putt\";i:3;s:3:\"tee\";i:4;s:13:\"golf-ball-tee\";i:5;s:13:\"golf ball tee\";}}s:16:\"fab fa-goodreads\";a:2:{s:5:\"label\";s:9:\"Goodreads\";s:6:\"search\";a:1:{i:0;s:9:\"goodreads\";}}s:18:\"fab fa-goodreads-g\";a:2:{s:5:\"label\";s:11:\"Goodreads G\";s:6:\"search\";a:2:{i:0;s:11:\"goodreads-g\";i:1;s:11:\"goodreads g\";}}s:13:\"fab fa-google\";a:2:{s:5:\"label\";s:11:\"Google Logo\";s:6:\"search\";a:2:{i:0;s:6:\"google\";i:1;s:11:\"google logo\";}}s:19:\"fab fa-google-drive\";a:2:{s:5:\"label\";s:12:\"Google Drive\";s:6:\"search\";a:2:{i:0;s:12:\"google-drive\";i:1;s:12:\"google drive\";}}s:17:\"fab fa-google-pay\";a:2:{s:5:\"label\";s:10:\"Google Pay\";s:6:\"search\";a:2:{i:0;s:10:\"google-pay\";i:1;s:10:\"google pay\";}}s:18:\"fab fa-google-play\";a:2:{s:5:\"label\";s:11:\"Google Play\";s:6:\"search\";a:3:{i:0;s:9:\"playstore\";i:1;s:11:\"google-play\";i:2;s:11:\"google play\";}}s:18:\"fab fa-google-plus\";a:2:{s:5:\"label\";s:11:\"Google Plus\";s:6:\"search\";a:4:{i:0;s:18:\"google-plus-circle\";i:1;s:20:\"google-plus-official\";i:2;s:11:\"google-plus\";i:3;s:11:\"google plus\";}}s:20:\"fab fa-google-plus-g\";a:2:{s:5:\"label\";s:13:\"Google Plus G\";s:6:\"search\";a:4:{i:0;s:11:\"google-plus\";i:1;s:14:\"social network\";i:2;s:13:\"google-plus-g\";i:3;s:13:\"google plus g\";}}s:21:\"fab fa-google-scholar\";a:2:{s:5:\"label\";s:14:\"Google Scholar\";s:6:\"search\";a:2:{i:0;s:14:\"google-scholar\";i:1;s:14:\"google scholar\";}}s:20:\"fab fa-google-wallet\";a:2:{s:5:\"label\";s:13:\"Google Wallet\";s:6:\"search\";a:2:{i:0;s:13:\"google-wallet\";i:1;s:13:\"google wallet\";}}s:14:\"fas fa-gopuram\";a:2:{s:5:\"label\";s:7:\"Gopuram\";s:6:\"search\";a:6:{i:0;s:8:\"building\";i:1;s:8:\"entrance\";i:2;s:8:\"hinduism\";i:3;s:6:\"temple\";i:4;s:5:\"tower\";i:5;s:7:\"gopuram\";}}s:21:\"fas fa-graduation-cap\";a:2:{s:5:\"label\";s:14:\"Graduation Cap\";s:6:\"search\";a:13:{i:0;s:3:\"cap\";i:1;s:11:\"celebration\";i:2;s:8:\"ceremony\";i:3;s:8:\"clothing\";i:4;s:7:\"college\";i:5;s:8:\"graduate\";i:6;s:10:\"graduation\";i:7;s:14:\"graduation cap\";i:8;s:3:\"hat\";i:9;s:8:\"learning\";i:10;s:6:\"school\";i:11;s:7:\"student\";i:12;s:14:\"graduation-cap\";}}s:15:\"fab fa-gratipay\";a:2:{s:5:\"label\";s:17:\"Gratipay (Gittip)\";s:6:\"search\";a:6:{i:0;s:8:\"favorite\";i:1;s:5:\"heart\";i:2;s:4:\"like\";i:3;s:4:\"love\";i:4;s:8:\"gratipay\";i:5;s:17:\"gratipay (gittip)\";}}s:11:\"fab fa-grav\";a:2:{s:5:\"label\";s:4:\"Grav\";s:6:\"search\";a:1:{i:0;s:4:\"grav\";}}s:19:\"fas fa-greater-than\";a:2:{s:5:\"label\";s:12:\"Greater Than\";s:6:\"search\";a:6:{i:0;s:17:\"Greater-Than Sign\";i:1;s:10:\"arithmetic\";i:2;s:7:\"compare\";i:3;s:4:\"math\";i:4;s:12:\"greater-than\";i:5;s:12:\"greater than\";}}s:25:\"fas fa-greater-than-equal\";a:2:{s:5:\"label\";s:18:\"Greater Than Equal\";s:6:\"search\";a:5:{i:0;s:10:\"arithmetic\";i:1;s:7:\"compare\";i:2;s:4:\"math\";i:3;s:18:\"greater-than-equal\";i:4;s:18:\"greater than equal\";}}s:11:\"fas fa-grip\";a:2:{s:5:\"label\";s:4:\"Grip\";s:6:\"search\";a:6:{i:0;s:10:\"affordance\";i:1;s:4:\"drag\";i:2;s:4:\"drop\";i:3;s:4:\"grab\";i:4;s:6:\"handle\";i:5;s:4:\"grip\";}}s:17:\"fas fa-grip-lines\";a:2:{s:5:\"label\";s:10:\"Grip Lines\";s:6:\"search\";a:7:{i:0;s:10:\"affordance\";i:1;s:4:\"drag\";i:2;s:4:\"drop\";i:3;s:4:\"grab\";i:4;s:6:\"handle\";i:5;s:10:\"grip-lines\";i:6;s:10:\"grip lines\";}}s:26:\"fas fa-grip-lines-vertical\";a:2:{s:5:\"label\";s:19:\"Grip Lines Vertical\";s:6:\"search\";a:7:{i:0;s:10:\"affordance\";i:1;s:4:\"drag\";i:2;s:4:\"drop\";i:3;s:4:\"grab\";i:4;s:6:\"handle\";i:5;s:19:\"grip-lines-vertical\";i:6;s:19:\"grip lines vertical\";}}s:20:\"fas fa-grip-vertical\";a:2:{s:5:\"label\";s:13:\"Grip Vertical\";s:6:\"search\";a:7:{i:0;s:10:\"affordance\";i:1;s:4:\"drag\";i:2;s:4:\"drop\";i:3;s:4:\"grab\";i:4;s:6:\"handle\";i:5;s:13:\"grip-vertical\";i:6;s:13:\"grip vertical\";}}s:15:\"fab fa-gripfire\";a:2:{s:5:\"label\";s:14:\"Gripfire, Inc.\";s:6:\"search\";a:2:{i:0;s:8:\"gripfire\";i:1;s:14:\"gripfire, inc.\";}}s:26:\"fas fa-group-arrows-rotate\";a:2:{s:5:\"label\";s:19:\"Group Arrows Rotate\";s:6:\"search\";a:6:{i:0;s:9:\"community\";i:1;s:10:\"engagement\";i:2;s:4:\"spin\";i:3;s:4:\"sync\";i:4;s:19:\"group-arrows-rotate\";i:5;s:19:\"group arrows rotate\";}}s:12:\"fab fa-grunt\";a:2:{s:5:\"label\";s:5:\"Grunt\";s:6:\"search\";a:1:{i:0;s:5:\"grunt\";}}s:19:\"fas fa-guarani-sign\";a:2:{s:5:\"label\";s:12:\"Guarani Sign\";s:6:\"search\";a:4:{i:0;s:12:\"Guarani Sign\";i:1;s:8:\"currency\";i:2;s:12:\"guarani-sign\";i:3;s:12:\"guarani sign\";}}s:14:\"fab fa-guilded\";a:2:{s:5:\"label\";s:7:\"Guilded\";s:6:\"search\";a:1:{i:0;s:7:\"guilded\";}}s:13:\"fas fa-guitar\";a:2:{s:5:\"label\";s:6:\"Guitar\";s:6:\"search\";a:8:{i:0;s:8:\"acoustic\";i:1;s:10:\"instrument\";i:2;s:5:\"music\";i:3;s:4:\"rock\";i:4;s:13:\"rock and roll\";i:5;s:4:\"song\";i:6;s:7:\"strings\";i:7;s:6:\"guitar\";}}s:11:\"fab fa-gulp\";a:2:{s:5:\"label\";s:4:\"Gulp\";s:6:\"search\";a:1:{i:0;s:4:\"gulp\";}}s:10:\"fas fa-gun\";a:2:{s:5:\"label\";s:3:\"Gun\";s:6:\"search\";a:4:{i:0;s:7:\"firearm\";i:1;s:6:\"pistol\";i:2;s:6:\"weapon\";i:3;s:3:\"gun\";}}s:8:\"fas fa-h\";a:2:{s:5:\"label\";s:1:\"H\";s:6:\"search\";a:4:{i:0;s:22:\"Latin Capital Letter H\";i:1;s:20:\"Latin Small Letter H\";i:2;s:6:\"letter\";i:3;s:1:\"h\";}}s:18:\"fab fa-hacker-news\";a:2:{s:5:\"label\";s:11:\"Hacker News\";s:6:\"search\";a:2:{i:0;s:11:\"hacker-news\";i:1;s:11:\"hacker news\";}}s:17:\"fab fa-hackerrank\";a:2:{s:5:\"label\";s:10:\"Hackerrank\";s:6:\"search\";a:1:{i:0;s:10:\"hackerrank\";}}s:13:\"fas fa-hammer\";a:2:{s:5:\"label\";s:6:\"Hammer\";s:6:\"search\";a:11:{i:0;s:5:\"admin\";i:1;s:13:\"configuration\";i:2;s:9:\"equipment\";i:3;s:3:\"fix\";i:4;s:6:\"hammer\";i:5;s:11:\"maintenance\";i:6;s:6:\"modify\";i:7;s:8:\"recovery\";i:8;s:6:\"repair\";i:9;s:8:\"settings\";i:10;s:4:\"tool\";}}s:12:\"fas fa-hamsa\";a:2:{s:5:\"label\";s:5:\"Hamsa\";s:6:\"search\";a:8:{i:0;s:6:\"amulet\";i:1;s:12:\"christianity\";i:2;s:5:\"islam\";i:3;s:6:\"jewish\";i:4;s:7:\"judaism\";i:5;s:6:\"muslim\";i:6;s:10:\"protection\";i:7;s:5:\"hamsa\";}}s:11:\"fas fa-hand\";a:2:{s:5:\"label\";s:12:\"Hand (solid)\";s:6:\"search\";a:11:{i:0;s:11:\"Raised Hand\";i:1;s:8:\"backhand\";i:2;s:4:\"game\";i:3;s:4:\"halt\";i:4;s:4:\"palm\";i:5;s:6:\"raised\";i:6;s:19:\"raised back of hand\";i:7;s:7:\"request\";i:8;s:8:\"roshambo\";i:9;s:4:\"stop\";i:10;s:4:\"hand\";}}s:11:\"far fa-hand\";a:2:{s:5:\"label\";s:14:\"Hand (regular)\";s:6:\"search\";a:11:{i:0;s:11:\"Raised Hand\";i:1;s:8:\"backhand\";i:2;s:4:\"game\";i:3;s:4:\"halt\";i:4;s:4:\"palm\";i:5;s:6:\"raised\";i:6;s:19:\"raised back of hand\";i:7;s:7:\"request\";i:8;s:8:\"roshambo\";i:9;s:4:\"stop\";i:10;s:4:\"hand\";}}s:21:\"fas fa-hand-back-fist\";a:2:{s:5:\"label\";s:22:\"Hand Back Fist (solid)\";s:6:\"search\";a:5:{i:0;s:4:\"fist\";i:1;s:4:\"game\";i:2;s:8:\"roshambo\";i:3;s:14:\"hand-back-fist\";i:4;s:14:\"hand back fist\";}}s:21:\"far fa-hand-back-fist\";a:2:{s:5:\"label\";s:24:\"Hand Back Fist (regular)\";s:6:\"search\";a:5:{i:0;s:4:\"fist\";i:1;s:4:\"game\";i:2;s:8:\"roshambo\";i:3;s:14:\"hand-back-fist\";i:4;s:14:\"hand back fist\";}}s:16:\"fas fa-hand-dots\";a:2:{s:5:\"label\";s:9:\"Hand Dots\";s:6:\"search\";a:10:{i:0;s:7:\"allergy\";i:1;s:8:\"freckles\";i:2;s:4:\"hand\";i:3;s:5:\"hives\";i:4;s:4:\"palm\";i:5;s:3:\"pox\";i:6;s:4:\"skin\";i:7;s:5:\"spots\";i:8;s:9:\"hand-dots\";i:9;s:9:\"hand dots\";}}s:16:\"fas fa-hand-fist\";a:2:{s:5:\"label\";s:9:\"Hand Fist\";s:6:\"search\";a:16:{i:0;s:18:\"Dungeons & Dragons\";i:1;s:8:\"clenched\";i:2;s:3:\"d&d\";i:3;s:3:\"dnd\";i:4;s:7:\"fantasy\";i:5;s:4:\"fist\";i:6;s:4:\"hand\";i:7;s:2:\"ki\";i:8;s:4:\"monk\";i:9;s:5:\"punch\";i:10;s:11:\"raised fist\";i:11;s:6:\"resist\";i:12;s:8:\"strength\";i:13;s:14:\"unarmed combat\";i:14;s:9:\"hand-fist\";i:15;s:9:\"hand fist\";}}s:19:\"fas fa-hand-holding\";a:2:{s:5:\"label\";s:12:\"Hand Holding\";s:6:\"search\";a:4:{i:0;s:5:\"carry\";i:1;s:4:\"lift\";i:2;s:12:\"hand-holding\";i:3;s:12:\"hand holding\";}}s:26:\"fas fa-hand-holding-dollar\";a:2:{s:5:\"label\";s:19:\"Hand Holding Dollar\";s:6:\"search\";a:16:{i:0;s:1:\"$\";i:1;s:5:\"carry\";i:2;s:6:\"coupon\";i:3;s:11:\"dollar sign\";i:4;s:6:\"donate\";i:5;s:8:\"donation\";i:6;s:6:\"giving\";i:7;s:10:\"investment\";i:8;s:4:\"lift\";i:9;s:5:\"money\";i:10;s:7:\"premium\";i:11;s:5:\"price\";i:12;s:7:\"revenue\";i:13;s:6:\"salary\";i:14;s:19:\"hand-holding-dollar\";i:15;s:19:\"hand holding dollar\";}}s:27:\"fas fa-hand-holding-droplet\";a:2:{s:5:\"label\";s:20:\"Hand Holding Droplet\";s:6:\"search\";a:9:{i:0;s:5:\"blood\";i:1;s:5:\"carry\";i:2;s:8:\"covid-19\";i:3;s:7:\"drought\";i:4;s:4:\"grow\";i:5;s:4:\"lift\";i:6;s:10:\"sanitation\";i:7;s:20:\"hand-holding-droplet\";i:8;s:20:\"hand holding droplet\";}}s:24:\"fas fa-hand-holding-hand\";a:2:{s:5:\"label\";s:17:\"Hand Holding Hand\";s:6:\"search\";a:7:{i:0;s:4:\"care\";i:1;s:4:\"give\";i:2;s:4:\"help\";i:3;s:4:\"hold\";i:4;s:7:\"protect\";i:5;s:17:\"hand-holding-hand\";i:6;s:17:\"hand holding hand\";}}s:25:\"fas fa-hand-holding-heart\";a:2:{s:5:\"label\";s:18:\"Hand Holding Heart\";s:6:\"search\";a:8:{i:0;s:5:\"carry\";i:1;s:7:\"charity\";i:2;s:4:\"gift\";i:3;s:4:\"lift\";i:4;s:7:\"package\";i:5;s:8:\"wishlist\";i:6;s:18:\"hand-holding-heart\";i:7;s:18:\"hand holding heart\";}}s:27:\"fas fa-hand-holding-medical\";a:2:{s:5:\"label\";s:20:\"Hand Holding Medical\";s:6:\"search\";a:6:{i:0;s:4:\"care\";i:1;s:8:\"covid-19\";i:2;s:6:\"donate\";i:3;s:4:\"help\";i:4;s:20:\"hand-holding-medical\";i:5;s:20:\"hand holding medical\";}}s:18:\"fas fa-hand-lizard\";a:2:{s:5:\"label\";s:19:\"Hand Lizard (solid)\";s:6:\"search\";a:4:{i:0;s:4:\"game\";i:1;s:8:\"roshambo\";i:2;s:11:\"hand-lizard\";i:3;s:11:\"hand lizard\";}}s:18:\"far fa-hand-lizard\";a:2:{s:5:\"label\";s:21:\"Hand Lizard (regular)\";s:6:\"search\";a:4:{i:0;s:4:\"game\";i:1;s:8:\"roshambo\";i:2;s:11:\"hand-lizard\";i:3;s:11:\"hand lizard\";}}s:25:\"fas fa-hand-middle-finger\";a:2:{s:5:\"label\";s:18:\"Hand Middle Finger\";s:6:\"search\";a:9:{i:0;s:6:\"finger\";i:1;s:13:\"flip the bird\";i:2;s:7:\"gesture\";i:3;s:4:\"hand\";i:4;s:4:\"hate\";i:5;s:13:\"middle finger\";i:6;s:4:\"rude\";i:7;s:18:\"hand-middle-finger\";i:8;s:18:\"hand middle finger\";}}s:17:\"fas fa-hand-peace\";a:2:{s:5:\"label\";s:18:\"Hand Peace (solid)\";s:6:\"search\";a:8:{i:0;s:4:\"hand\";i:1;s:4:\"rest\";i:2;s:5:\"truce\";i:3;s:1:\"v\";i:4;s:7:\"victory\";i:5;s:12:\"victory hand\";i:6;s:10:\"hand-peace\";i:7;s:10:\"hand peace\";}}s:17:\"far fa-hand-peace\";a:2:{s:5:\"label\";s:20:\"Hand Peace (regular)\";s:6:\"search\";a:8:{i:0;s:4:\"hand\";i:1;s:4:\"rest\";i:2;s:5:\"truce\";i:3;s:1:\"v\";i:4;s:7:\"victory\";i:5;s:12:\"victory hand\";i:6;s:10:\"hand-peace\";i:7;s:10:\"hand peace\";}}s:22:\"fas fa-hand-point-down\";a:2:{s:5:\"label\";s:23:\"Hand Point Down (solid)\";s:6:\"search\";a:5:{i:0;s:6:\"finger\";i:1;s:11:\"hand-o-down\";i:2;s:5:\"point\";i:3;s:15:\"hand-point-down\";i:4;s:15:\"hand point down\";}}s:22:\"far fa-hand-point-down\";a:2:{s:5:\"label\";s:25:\"Hand Point Down (regular)\";s:6:\"search\";a:5:{i:0;s:6:\"finger\";i:1;s:11:\"hand-o-down\";i:2;s:5:\"point\";i:3;s:15:\"hand-point-down\";i:4;s:15:\"hand point down\";}}s:22:\"fas fa-hand-point-left\";a:2:{s:5:\"label\";s:23:\"Hand Point Left (solid)\";s:6:\"search\";a:8:{i:0;s:4:\"back\";i:1;s:6:\"finger\";i:2;s:11:\"hand-o-left\";i:3;s:4:\"left\";i:4;s:5:\"point\";i:5;s:8:\"previous\";i:6;s:15:\"hand-point-left\";i:7;s:15:\"hand point left\";}}s:22:\"far fa-hand-point-left\";a:2:{s:5:\"label\";s:25:\"Hand Point Left (regular)\";s:6:\"search\";a:8:{i:0;s:4:\"back\";i:1;s:6:\"finger\";i:2;s:11:\"hand-o-left\";i:3;s:4:\"left\";i:4;s:5:\"point\";i:5;s:8:\"previous\";i:6;s:15:\"hand-point-left\";i:7;s:15:\"hand point left\";}}s:23:\"fas fa-hand-point-right\";a:2:{s:5:\"label\";s:24:\"Hand Point Right (solid)\";s:6:\"search\";a:8:{i:0;s:6:\"finger\";i:1;s:7:\"forward\";i:2;s:12:\"hand-o-right\";i:3;s:4:\"next\";i:4;s:5:\"point\";i:5;s:5:\"right\";i:6;s:16:\"hand-point-right\";i:7;s:16:\"hand point right\";}}s:23:\"far fa-hand-point-right\";a:2:{s:5:\"label\";s:26:\"Hand Point Right (regular)\";s:6:\"search\";a:8:{i:0;s:6:\"finger\";i:1;s:7:\"forward\";i:2;s:12:\"hand-o-right\";i:3;s:4:\"next\";i:4;s:5:\"point\";i:5;s:5:\"right\";i:6;s:16:\"hand-point-right\";i:7;s:16:\"hand point right\";}}s:20:\"fas fa-hand-point-up\";a:2:{s:5:\"label\";s:21:\"Hand Point Up (solid)\";s:6:\"search\";a:11:{i:0;s:6:\"finger\";i:1;s:4:\"hand\";i:2;s:9:\"hand-o-up\";i:3;s:5:\"index\";i:4;s:17:\"index pointing up\";i:5;s:5:\"point\";i:6;s:7:\"request\";i:7;s:2:\"up\";i:8;s:7:\"upgrade\";i:9;s:13:\"hand-point-up\";i:10;s:13:\"hand point up\";}}s:20:\"far fa-hand-point-up\";a:2:{s:5:\"label\";s:23:\"Hand Point Up (regular)\";s:6:\"search\";a:11:{i:0;s:6:\"finger\";i:1;s:4:\"hand\";i:2;s:9:\"hand-o-up\";i:3;s:5:\"index\";i:4;s:17:\"index pointing up\";i:5;s:5:\"point\";i:6;s:7:\"request\";i:7;s:2:\"up\";i:8;s:7:\"upgrade\";i:9;s:13:\"hand-point-up\";i:10;s:13:\"hand point up\";}}s:19:\"fas fa-hand-pointer\";a:2:{s:5:\"label\";s:20:\"Hand Pointer (solid)\";s:6:\"search\";a:5:{i:0;s:5:\"arrow\";i:1;s:6:\"cursor\";i:2;s:6:\"select\";i:3;s:12:\"hand-pointer\";i:4;s:12:\"hand pointer\";}}s:19:\"far fa-hand-pointer\";a:2:{s:5:\"label\";s:22:\"Hand Pointer (regular)\";s:6:\"search\";a:5:{i:0;s:5:\"arrow\";i:1;s:6:\"cursor\";i:2;s:6:\"select\";i:3;s:12:\"hand-pointer\";i:4;s:12:\"hand pointer\";}}s:20:\"fas fa-hand-scissors\";a:2:{s:5:\"label\";s:21:\"Hand Scissors (solid)\";s:6:\"search\";a:5:{i:0;s:3:\"cut\";i:1;s:4:\"game\";i:2;s:8:\"roshambo\";i:3;s:13:\"hand-scissors\";i:4;s:13:\"hand scissors\";}}s:20:\"far fa-hand-scissors\";a:2:{s:5:\"label\";s:23:\"Hand Scissors (regular)\";s:6:\"search\";a:5:{i:0;s:3:\"cut\";i:1;s:4:\"game\";i:2;s:8:\"roshambo\";i:3;s:13:\"hand-scissors\";i:4;s:13:\"hand scissors\";}}s:20:\"fas fa-hand-sparkles\";a:2:{s:5:\"label\";s:13:\"Hand Sparkles\";s:6:\"search\";a:9:{i:0;s:5:\"clean\";i:1;s:8:\"covid-19\";i:2;s:7:\"hygiene\";i:3;s:5:\"magic\";i:4;s:4:\"palm\";i:5;s:4:\"soap\";i:6;s:4:\"wash\";i:7;s:13:\"hand-sparkles\";i:8;s:13:\"hand sparkles\";}}s:17:\"fas fa-hand-spock\";a:2:{s:5:\"label\";s:18:\"Hand Spock (solid)\";s:6:\"search\";a:12:{i:0;s:6:\"finger\";i:1;s:4:\"hand\";i:2;s:9:\"live long\";i:3;s:4:\"palm\";i:4;s:7:\"prosper\";i:5;s:6:\"salute\";i:6;s:5:\"spock\";i:7;s:9:\"star trek\";i:8;s:6:\"vulcan\";i:9;s:13:\"vulcan salute\";i:10;s:10:\"hand-spock\";i:11;s:10:\"hand spock\";}}s:17:\"far fa-hand-spock\";a:2:{s:5:\"label\";s:20:\"Hand Spock (regular)\";s:6:\"search\";a:12:{i:0;s:6:\"finger\";i:1;s:4:\"hand\";i:2;s:9:\"live long\";i:3;s:4:\"palm\";i:4;s:7:\"prosper\";i:5;s:6:\"salute\";i:6;s:5:\"spock\";i:7;s:9:\"star trek\";i:8;s:6:\"vulcan\";i:9;s:13:\"vulcan salute\";i:10;s:10:\"hand-spock\";i:11;s:10:\"hand spock\";}}s:16:\"fas fa-handcuffs\";a:2:{s:5:\"label\";s:9:\"Handcuffs\";s:6:\"search\";a:7:{i:0;s:6:\"arrest\";i:1;s:8:\"criminal\";i:2;s:9:\"handcuffs\";i:3;s:4:\"jail\";i:4;s:4:\"lock\";i:5;s:6:\"police\";i:6;s:5:\"wrist\";}}s:12:\"fas fa-hands\";a:2:{s:5:\"label\";s:5:\"Hands\";s:6:\"search\";a:4:{i:0;s:9:\"Translate\";i:1;s:3:\"asl\";i:2;s:4:\"deaf\";i:3;s:5:\"hands\";}}s:29:\"fas fa-hands-asl-interpreting\";a:2:{s:5:\"label\";s:22:\"Hands Asl Interpreting\";s:6:\"search\";a:8:{i:0;s:3:\"asl\";i:1;s:4:\"deaf\";i:2;s:6:\"finger\";i:3;s:4:\"hand\";i:4;s:9:\"interpret\";i:5;s:5:\"speak\";i:6;s:22:\"hands-asl-interpreting\";i:7;s:22:\"hands asl interpreting\";}}s:18:\"fas fa-hands-bound\";a:2:{s:5:\"label\";s:11:\"Hands Bound\";s:6:\"search\";a:6:{i:0;s:9:\"abduction\";i:1;s:5:\"bound\";i:2;s:8:\"handcuff\";i:3;s:5:\"wrist\";i:4;s:11:\"hands-bound\";i:5;s:11:\"hands bound\";}}s:20:\"fas fa-hands-bubbles\";a:2:{s:5:\"label\";s:13:\"Hands Bubbles\";s:6:\"search\";a:6:{i:0;s:8:\"covid-19\";i:1;s:7:\"hygiene\";i:2;s:4:\"soap\";i:3;s:4:\"wash\";i:4;s:13:\"hands-bubbles\";i:5;s:13:\"hands bubbles\";}}s:21:\"fas fa-hands-clapping\";a:2:{s:5:\"label\";s:14:\"Hands Clapping\";s:6:\"search\";a:6:{i:0;s:8:\"applause\";i:1;s:4:\"clap\";i:2;s:14:\"clapping hands\";i:3;s:4:\"hand\";i:4;s:14:\"hands-clapping\";i:5;s:14:\"hands clapping\";}}s:20:\"fas fa-hands-holding\";a:2:{s:5:\"label\";s:13:\"Hands Holding\";s:6:\"search\";a:5:{i:0;s:5:\"carry\";i:1;s:4:\"hold\";i:2;s:4:\"lift\";i:3;s:13:\"hands-holding\";i:4;s:13:\"hands holding\";}}s:26:\"fas fa-hands-holding-child\";a:2:{s:5:\"label\";s:19:\"Hands Holding Child\";s:6:\"search\";a:8:{i:0;s:4:\"care\";i:1;s:4:\"give\";i:2;s:4:\"help\";i:3;s:4:\"hold\";i:4;s:6:\"parent\";i:5;s:7:\"protect\";i:6;s:19:\"hands-holding-child\";i:7;s:19:\"hands holding child\";}}s:27:\"fas fa-hands-holding-circle\";a:2:{s:5:\"label\";s:20:\"Hands Holding Circle\";s:6:\"search\";a:5:{i:0;s:6:\"circle\";i:1;s:4:\"gift\";i:2;s:10:\"protection\";i:3;s:20:\"hands-holding-circle\";i:4;s:20:\"hands holding circle\";}}s:20:\"fas fa-hands-praying\";a:2:{s:5:\"label\";s:13:\"Hands Praying\";s:6:\"search\";a:6:{i:0;s:5:\"kneel\";i:1;s:6:\"preach\";i:2;s:8:\"religion\";i:3;s:7:\"worship\";i:4;s:13:\"hands-praying\";i:5;s:13:\"hands praying\";}}s:16:\"fas fa-handshake\";a:2:{s:5:\"label\";s:17:\"Handshake (solid)\";s:6:\"search\";a:5:{i:0;s:9:\"agreement\";i:1;s:8:\"greeting\";i:2;s:7:\"meeting\";i:3;s:11:\"partnership\";i:4;s:9:\"handshake\";}}s:16:\"far fa-handshake\";a:2:{s:5:\"label\";s:19:\"Handshake (regular)\";s:6:\"search\";a:5:{i:0;s:9:\"agreement\";i:1;s:8:\"greeting\";i:2;s:7:\"meeting\";i:3;s:11:\"partnership\";i:4;s:9:\"handshake\";}}s:22:\"fas fa-handshake-angle\";a:2:{s:5:\"label\";s:15:\"Handshake Angle\";s:6:\"search\";a:7:{i:0;s:3:\"aid\";i:1;s:10:\"assistance\";i:2;s:9:\"handshake\";i:3;s:11:\"partnership\";i:4;s:12:\"volunteering\";i:5;s:15:\"handshake-angle\";i:6;s:15:\"handshake angle\";}}s:23:\"fas fa-handshake-simple\";a:2:{s:5:\"label\";s:16:\"Handshake Simple\";s:6:\"search\";a:9:{i:0;s:9:\"agreement\";i:1;s:8:\"greeting\";i:2;s:4:\"hand\";i:3;s:9:\"handshake\";i:4;s:7:\"meeting\";i:5;s:11:\"partnership\";i:6;s:5:\"shake\";i:7;s:16:\"handshake-simple\";i:8;s:16:\"handshake simple\";}}s:29:\"fas fa-handshake-simple-slash\";a:2:{s:5:\"label\";s:22:\"Handshake Simple Slash\";s:6:\"search\";a:6:{i:0;s:6:\"broken\";i:1;s:8:\"covid-19\";i:2;s:8:\"disabled\";i:3;s:15:\"social distance\";i:4;s:22:\"handshake-simple-slash\";i:5;s:22:\"handshake simple slash\";}}s:22:\"fas fa-handshake-slash\";a:2:{s:5:\"label\";s:15:\"Handshake Slash\";s:6:\"search\";a:6:{i:0;s:6:\"broken\";i:1;s:8:\"covid-19\";i:2;s:8:\"disabled\";i:3;s:15:\"social distance\";i:4;s:15:\"handshake-slash\";i:5;s:15:\"handshake slash\";}}s:15:\"fas fa-hanukiah\";a:2:{s:5:\"label\";s:8:\"Hanukiah\";s:6:\"search\";a:10:{i:0;s:11:\"candelabrum\";i:1;s:6:\"candle\";i:2;s:11:\"candlestick\";i:3;s:8:\"hanukkah\";i:4;s:6:\"jewish\";i:5;s:7:\"judaism\";i:6;s:5:\"light\";i:7;s:7:\"menorah\";i:8;s:8:\"religion\";i:9;s:8:\"hanukiah\";}}s:17:\"fas fa-hard-drive\";a:2:{s:5:\"label\";s:18:\"Hard Drive (solid)\";s:6:\"search\";a:8:{i:0;s:9:\"Hard Disk\";i:1;s:3:\"cpu\";i:2;s:10:\"hard drive\";i:3;s:9:\"harddrive\";i:4;s:7:\"machine\";i:5;s:4:\"save\";i:6;s:7:\"storage\";i:7;s:10:\"hard-drive\";}}s:17:\"far fa-hard-drive\";a:2:{s:5:\"label\";s:20:\"Hard Drive (regular)\";s:6:\"search\";a:8:{i:0;s:9:\"Hard Disk\";i:1;s:3:\"cpu\";i:2;s:10:\"hard drive\";i:3;s:9:\"harddrive\";i:4;s:7:\"machine\";i:5;s:4:\"save\";i:6;s:7:\"storage\";i:7;s:10:\"hard-drive\";}}s:15:\"fab fa-hashnode\";a:2:{s:5:\"label\";s:8:\"Hashnode\";s:6:\"search\";a:1:{i:0;s:8:\"hashnode\";}}s:14:\"fas fa-hashtag\";a:2:{s:5:\"label\";s:7:\"Hashtag\";s:6:\"search\";a:7:{i:0;s:11:\"Number Sign\";i:1;s:7:\"Twitter\";i:2;s:9:\"instagram\";i:3;s:5:\"pound\";i:4;s:12:\"social media\";i:5;s:3:\"tag\";i:6;s:7:\"hashtag\";}}s:17:\"fas fa-hat-cowboy\";a:2:{s:5:\"label\";s:10:\"Hat Cowboy\";s:6:\"search\";a:13:{i:0;s:8:\"buckaroo\";i:1;s:5:\"horse\";i:2;s:8:\"jackeroo\";i:3;s:7:\"john b.\";i:4;s:8:\"old west\";i:5;s:7:\"pardner\";i:6;s:5:\"ranch\";i:7;s:7:\"rancher\";i:8;s:5:\"rodeo\";i:9;s:7:\"western\";i:10;s:8:\"wrangler\";i:11;s:10:\"hat-cowboy\";i:12;s:10:\"hat cowboy\";}}s:22:\"fas fa-hat-cowboy-side\";a:2:{s:5:\"label\";s:15:\"Hat Cowboy Side\";s:6:\"search\";a:13:{i:0;s:8:\"buckaroo\";i:1;s:5:\"horse\";i:2;s:8:\"jackeroo\";i:3;s:7:\"john b.\";i:4;s:8:\"old west\";i:5;s:7:\"pardner\";i:6;s:5:\"ranch\";i:7;s:7:\"rancher\";i:8;s:5:\"rodeo\";i:9;s:7:\"western\";i:10;s:8:\"wrangler\";i:11;s:15:\"hat-cowboy-side\";i:12;s:15:\"hat cowboy side\";}}s:17:\"fas fa-hat-wizard\";a:2:{s:5:\"label\";s:10:\"Hat Wizard\";s:6:\"search\";a:16:{i:0;s:18:\"Dungeons & Dragons\";i:1;s:9:\"accessory\";i:2;s:6:\"buckle\";i:3;s:8:\"clothing\";i:4;s:3:\"d&d\";i:5;s:3:\"dnd\";i:6;s:7:\"fantasy\";i:7;s:9:\"halloween\";i:8;s:4:\"head\";i:9;s:7:\"holiday\";i:10;s:4:\"mage\";i:11;s:5:\"magic\";i:12;s:6:\"pointy\";i:13;s:5:\"witch\";i:14;s:10:\"hat-wizard\";i:15;s:10:\"hat wizard\";}}s:22:\"fas fa-head-side-cough\";a:2:{s:5:\"label\";s:15:\"Head Side Cough\";s:6:\"search\";a:9:{i:0;s:5:\"cough\";i:1;s:8:\"covid-19\";i:2;s:5:\"germs\";i:3;s:5:\"lungs\";i:4;s:11:\"respiratory\";i:5;s:4:\"sick\";i:6;s:3:\"uer\";i:7;s:15:\"head-side-cough\";i:8;s:15:\"head side cough\";}}s:28:\"fas fa-head-side-cough-slash\";a:2:{s:5:\"label\";s:21:\"Head Side Cough Slash\";s:6:\"search\";a:10:{i:0;s:5:\"cough\";i:1;s:8:\"covid-19\";i:2;s:8:\"disabled\";i:3;s:5:\"germs\";i:4;s:5:\"lungs\";i:5;s:11:\"respiratory\";i:6;s:4:\"sick\";i:7;s:3:\"uer\";i:8;s:21:\"head-side-cough-slash\";i:9;s:21:\"head side cough slash\";}}s:21:\"fas fa-head-side-mask\";a:2:{s:5:\"label\";s:14:\"Head Side Mask\";s:6:\"search\";a:12:{i:0;s:6:\"breath\";i:1;s:11:\"coronavirus\";i:2;s:8:\"covid-19\";i:3;s:6:\"filter\";i:4;s:3:\"flu\";i:5;s:9:\"infection\";i:6;s:8:\"pandemic\";i:7;s:10:\"respirator\";i:8;s:3:\"uer\";i:9;s:5:\"virus\";i:10;s:14:\"head-side-mask\";i:11;s:14:\"head side mask\";}}s:22:\"fas fa-head-side-virus\";a:2:{s:5:\"label\";s:15:\"Head Side Virus\";s:6:\"search\";a:10:{i:0;s:4:\"cold\";i:1;s:11:\"coronavirus\";i:2;s:8:\"covid-19\";i:3;s:3:\"flu\";i:4;s:9:\"infection\";i:5;s:8:\"pandemic\";i:6;s:4:\"sick\";i:7;s:3:\"uer\";i:8;s:15:\"head-side-virus\";i:9;s:15:\"head side virus\";}}s:14:\"fas fa-heading\";a:2:{s:5:\"label\";s:7:\"Heading\";s:6:\"search\";a:5:{i:0;s:6:\"format\";i:1;s:6:\"header\";i:2;s:4:\"text\";i:3;s:5:\"title\";i:4;s:7:\"heading\";}}s:17:\"fas fa-headphones\";a:2:{s:5:\"label\";s:10:\"Headphones\";s:6:\"search\";a:8:{i:0;s:5:\"audio\";i:1;s:6:\"earbud\";i:2;s:9:\"headphone\";i:3;s:6:\"listen\";i:4;s:5:\"music\";i:5;s:5:\"sound\";i:6;s:7:\"speaker\";i:7;s:10:\"headphones\";}}s:24:\"fas fa-headphones-simple\";a:2:{s:5:\"label\";s:17:\"Headphones Simple\";s:6:\"search\";a:7:{i:0;s:5:\"audio\";i:1;s:6:\"listen\";i:2;s:5:\"music\";i:3;s:5:\"sound\";i:4;s:7:\"speaker\";i:5;s:17:\"headphones-simple\";i:6;s:17:\"headphones simple\";}}s:14:\"fas fa-headset\";a:2:{s:5:\"label\";s:7:\"Headset\";s:6:\"search\";a:11:{i:0;s:5:\"audio\";i:1;s:5:\"gamer\";i:2;s:6:\"gaming\";i:3;s:6:\"listen\";i:4;s:9:\"live chat\";i:5;s:10:\"microphone\";i:6;s:11:\"shot caller\";i:7;s:5:\"sound\";i:8;s:7:\"support\";i:9;s:12:\"telemarketer\";i:10;s:7:\"headset\";}}s:12:\"fas fa-heart\";a:2:{s:5:\"label\";s:13:\"Heart (solid)\";s:6:\"search\";a:30:{i:0;s:3:\"ace\";i:1;s:5:\"black\";i:2;s:11:\"black heart\";i:3;s:4:\"blue\";i:4;s:10:\"blue heart\";i:5;s:5:\"brown\";i:6;s:11:\"brown heart\";i:7;s:4:\"card\";i:8;s:4:\"evil\";i:9;s:8:\"favorite\";i:10;s:4:\"game\";i:11;s:5:\"green\";i:12;s:11:\"green heart\";i:13;s:5:\"heart\";i:14;s:10:\"heart suit\";i:15;s:4:\"like\";i:16;s:4:\"love\";i:17;s:6:\"orange\";i:18;s:12:\"orange heart\";i:19;s:6:\"purple\";i:20;s:12:\"purple heart\";i:21;s:9:\"red heart\";i:22;s:12:\"relationship\";i:23;s:9:\"valentine\";i:24;s:5:\"white\";i:25;s:11:\"white heart\";i:26;s:6:\"wicked\";i:27;s:8:\"wishlist\";i:28;s:6:\"yellow\";i:29;s:12:\"yellow heart\";}}s:12:\"far fa-heart\";a:2:{s:5:\"label\";s:15:\"Heart (regular)\";s:6:\"search\";a:30:{i:0;s:3:\"ace\";i:1;s:5:\"black\";i:2;s:11:\"black heart\";i:3;s:4:\"blue\";i:4;s:10:\"blue heart\";i:5;s:5:\"brown\";i:6;s:11:\"brown heart\";i:7;s:4:\"card\";i:8;s:4:\"evil\";i:9;s:8:\"favorite\";i:10;s:4:\"game\";i:11;s:5:\"green\";i:12;s:11:\"green heart\";i:13;s:5:\"heart\";i:14;s:10:\"heart suit\";i:15;s:4:\"like\";i:16;s:4:\"love\";i:17;s:6:\"orange\";i:18;s:12:\"orange heart\";i:19;s:6:\"purple\";i:20;s:12:\"purple heart\";i:21;s:9:\"red heart\";i:22;s:12:\"relationship\";i:23;s:9:\"valentine\";i:24;s:5:\"white\";i:25;s:11:\"white heart\";i:26;s:6:\"wicked\";i:27;s:8:\"wishlist\";i:28;s:6:\"yellow\";i:29;s:12:\"yellow heart\";}}s:24:\"fas fa-heart-circle-bolt\";a:2:{s:5:\"label\";s:17:\"Heart Circle Bolt\";s:6:\"search\";a:8:{i:0;s:10:\"cardiogram\";i:1;s:3:\"ekg\";i:2;s:8:\"electric\";i:3;s:5:\"heart\";i:4;s:4:\"love\";i:5;s:9:\"pacemaker\";i:6;s:17:\"heart-circle-bolt\";i:7;s:17:\"heart circle bolt\";}}s:25:\"fas fa-heart-circle-check\";a:2:{s:5:\"label\";s:18:\"Heart Circle Check\";s:6:\"search\";a:11:{i:0;s:6:\"enable\";i:1;s:8:\"favorite\";i:2;s:5:\"heart\";i:3;s:4:\"love\";i:4;s:12:\"not affected\";i:5;s:2:\"ok\";i:6;s:4:\"okay\";i:7;s:8:\"validate\";i:8;s:7:\"working\";i:9;s:18:\"heart-circle-check\";i:10;s:18:\"heart circle check\";}}s:31:\"fas fa-heart-circle-exclamation\";a:2:{s:5:\"label\";s:24:\"Heart Circle Exclamation\";s:6:\"search\";a:6:{i:0;s:6:\"failed\";i:1;s:8:\"favorite\";i:2;s:5:\"heart\";i:3;s:4:\"love\";i:4;s:24:\"heart-circle-exclamation\";i:5;s:24:\"heart circle exclamation\";}}s:25:\"fas fa-heart-circle-minus\";a:2:{s:5:\"label\";s:18:\"Heart Circle Minus\";s:6:\"search\";a:5:{i:0;s:8:\"favorite\";i:1;s:5:\"heart\";i:2;s:4:\"love\";i:3;s:18:\"heart-circle-minus\";i:4;s:18:\"heart circle minus\";}}s:24:\"fas fa-heart-circle-plus\";a:2:{s:5:\"label\";s:17:\"Heart Circle Plus\";s:6:\"search\";a:5:{i:0;s:8:\"favorite\";i:1;s:5:\"heart\";i:2;s:4:\"love\";i:3;s:17:\"heart-circle-plus\";i:4;s:17:\"heart circle plus\";}}s:25:\"fas fa-heart-circle-xmark\";a:2:{s:5:\"label\";s:18:\"Heart Circle Xmark\";s:6:\"search\";a:6:{i:0;s:8:\"favorite\";i:1;s:5:\"heart\";i:2;s:4:\"love\";i:3;s:7:\"uncheck\";i:4;s:18:\"heart-circle-xmark\";i:5;s:18:\"heart circle xmark\";}}s:18:\"fas fa-heart-crack\";a:2:{s:5:\"label\";s:11:\"Heart Crack\";s:6:\"search\";a:14:{i:0;s:5:\"break\";i:1;s:7:\"breakup\";i:2;s:6:\"broken\";i:3;s:12:\"broken heart\";i:4;s:7:\"crushed\";i:5;s:7:\"dislike\";i:6;s:6:\"dumped\";i:7;s:5:\"grief\";i:8;s:4:\"love\";i:9;s:8:\"lovesick\";i:10;s:12:\"relationship\";i:11;s:3:\"sad\";i:12;s:11:\"heart-crack\";i:13;s:11:\"heart crack\";}}s:18:\"fas fa-heart-pulse\";a:2:{s:5:\"label\";s:11:\"Heart Pulse\";s:6:\"search\";a:7:{i:0;s:3:\"ekg\";i:1;s:17:\"electrocardiogram\";i:2;s:6:\"health\";i:3;s:8:\"lifeline\";i:4;s:11:\"vital signs\";i:5;s:11:\"heart-pulse\";i:6;s:11:\"heart pulse\";}}s:17:\"fas fa-helicopter\";a:2:{s:5:\"label\";s:10:\"Helicopter\";s:6:\"search\";a:8:{i:0;s:7:\"airwolf\";i:1;s:6:\"apache\";i:2;s:7:\"chopper\";i:3;s:6:\"flight\";i:4;s:3:\"fly\";i:5;s:10:\"helicopter\";i:6;s:6:\"travel\";i:7;s:7:\"vehicle\";}}s:24:\"fas fa-helicopter-symbol\";a:2:{s:5:\"label\";s:17:\"Helicopter Symbol\";s:6:\"search\";a:6:{i:0;s:7:\"chopper\";i:1;s:10:\"helicopter\";i:2;s:11:\"landing pad\";i:3;s:10:\"whirlybird\";i:4;s:17:\"helicopter-symbol\";i:5;s:17:\"helicopter symbol\";}}s:20:\"fas fa-helmet-safety\";a:2:{s:5:\"label\";s:13:\"Helmet Safety\";s:6:\"search\";a:7:{i:0;s:12:\"construction\";i:1;s:7:\"hardhat\";i:2;s:6:\"helmet\";i:3;s:11:\"maintenance\";i:4;s:6:\"safety\";i:5;s:13:\"helmet-safety\";i:6;s:13:\"helmet safety\";}}s:16:\"fas fa-helmet-un\";a:2:{s:5:\"label\";s:9:\"Helmet Un\";s:6:\"search\";a:4:{i:0;s:6:\"helmet\";i:1;s:14:\"united nations\";i:2;s:9:\"helmet-un\";i:3;s:9:\"helmet un\";}}s:18:\"fas fa-highlighter\";a:2:{s:5:\"label\";s:11:\"Highlighter\";s:6:\"search\";a:7:{i:0;s:4:\"edit\";i:1;s:6:\"marker\";i:2;s:6:\"modify\";i:3;s:7:\"sharpie\";i:4;s:6:\"update\";i:5;s:5:\"write\";i:6;s:11:\"highlighter\";}}s:21:\"fas fa-hill-avalanche\";a:2:{s:5:\"label\";s:14:\"Hill Avalanche\";s:6:\"search\";a:5:{i:0;s:8:\"mudslide\";i:1;s:4:\"snow\";i:2;s:6:\"winter\";i:3;s:14:\"hill-avalanche\";i:4;s:14:\"hill avalanche\";}}s:21:\"fas fa-hill-rockslide\";a:2:{s:5:\"label\";s:14:\"Hill Rockslide\";s:6:\"search\";a:3:{i:0;s:8:\"mudslide\";i:1;s:14:\"hill-rockslide\";i:2;s:14:\"hill rockslide\";}}s:12:\"fas fa-hippo\";a:2:{s:5:\"label\";s:5:\"Hippo\";s:6:\"search\";a:6:{i:0;s:6:\"animal\";i:1;s:5:\"fauna\";i:2;s:5:\"hippo\";i:3;s:12:\"hippopotamus\";i:4;s:6:\"hungry\";i:5;s:6:\"mammal\";}}s:11:\"fab fa-hips\";a:2:{s:5:\"label\";s:4:\"Hips\";s:6:\"search\";a:1:{i:0;s:4:\"hips\";}}s:20:\"fab fa-hire-a-helper\";a:2:{s:5:\"label\";s:11:\"HireAHelper\";s:6:\"search\";a:2:{i:0;s:13:\"hire-a-helper\";i:1;s:11:\"hireahelper\";}}s:11:\"fab fa-hive\";a:2:{s:5:\"label\";s:23:\"Hive Blockchain Network\";s:6:\"search\";a:2:{i:0;s:4:\"hive\";i:1;s:23:\"hive blockchain network\";}}s:18:\"fas fa-hockey-puck\";a:2:{s:5:\"label\";s:11:\"Hockey Puck\";s:6:\"search\";a:5:{i:0;s:3:\"ice\";i:1;s:3:\"nhl\";i:2;s:5:\"sport\";i:3;s:11:\"hockey-puck\";i:4;s:11:\"hockey puck\";}}s:18:\"fas fa-holly-berry\";a:2:{s:5:\"label\";s:11:\"Holly Berry\";s:6:\"search\";a:12:{i:0;s:8:\"catwoman\";i:1;s:9:\"christmas\";i:2;s:10:\"decoration\";i:3;s:5:\"flora\";i:4;s:5:\"halle\";i:5;s:7:\"holiday\";i:6;s:12:\"ororo munroe\";i:7;s:5:\"plant\";i:8;s:5:\"storm\";i:9;s:4:\"xmas\";i:10;s:11:\"holly-berry\";i:11;s:11:\"holly berry\";}}s:12:\"fab fa-hooli\";a:2:{s:5:\"label\";s:5:\"Hooli\";s:6:\"search\";a:1:{i:0;s:5:\"hooli\";}}s:15:\"fab fa-hornbill\";a:2:{s:5:\"label\";s:8:\"Hornbill\";s:6:\"search\";a:1:{i:0;s:8:\"hornbill\";}}s:12:\"fas fa-horse\";a:2:{s:5:\"label\";s:5:\"Horse\";s:6:\"search\";a:10:{i:0;s:10:\"equestrian\";i:1;s:5:\"equus\";i:2;s:5:\"fauna\";i:3;s:5:\"horse\";i:4;s:7:\"mammmal\";i:5;s:4:\"mare\";i:6;s:5:\"neigh\";i:7;s:4:\"pony\";i:8;s:9:\"racehorse\";i:9;s:6:\"racing\";}}s:17:\"fas fa-horse-head\";a:2:{s:5:\"label\";s:10:\"Horse Head\";s:6:\"search\";a:8:{i:0;s:5:\"equus\";i:1;s:5:\"fauna\";i:2;s:7:\"mammmal\";i:3;s:4:\"mare\";i:4;s:5:\"neigh\";i:5;s:4:\"pony\";i:6;s:10:\"horse-head\";i:7;s:10:\"horse head\";}}s:15:\"fas fa-hospital\";a:2:{s:5:\"label\";s:16:\"Hospital (solid)\";s:6:\"search\";a:7:{i:0;s:8:\"building\";i:1;s:8:\"covid-19\";i:2;s:6:\"doctor\";i:3;s:14:\"emergency room\";i:4;s:8:\"hospital\";i:5;s:14:\"medical center\";i:6;s:8:\"medicine\";}}s:15:\"far fa-hospital\";a:2:{s:5:\"label\";s:18:\"Hospital (regular)\";s:6:\"search\";a:7:{i:0;s:8:\"building\";i:1;s:8:\"covid-19\";i:2;s:6:\"doctor\";i:3;s:14:\"emergency room\";i:4;s:8:\"hospital\";i:5;s:14:\"medical center\";i:6;s:8:\"medicine\";}}s:20:\"fas fa-hospital-user\";a:2:{s:5:\"label\";s:13:\"Hospital User\";s:6:\"search\";a:8:{i:0;s:8:\"covid-19\";i:1;s:6:\"doctor\";i:2;s:7:\"network\";i:3;s:7:\"patient\";i:4;s:12:\"primary care\";i:5;s:3:\"uer\";i:6;s:13:\"hospital-user\";i:7;s:13:\"hospital user\";}}s:21:\"fas fa-hot-tub-person\";a:2:{s:5:\"label\";s:14:\"Hot Tub Person\";s:6:\"search\";a:5:{i:0;s:7:\"jacuzzi\";i:1;s:3:\"spa\";i:2;s:3:\"uer\";i:3;s:14:\"hot-tub-person\";i:4;s:14:\"hot tub person\";}}s:13:\"fas fa-hotdog\";a:2:{s:5:\"label\";s:6:\"Hotdog\";s:6:\"search\";a:12:{i:0;s:3:\"bun\";i:1;s:5:\"chili\";i:2;s:9:\"frankfurt\";i:3;s:11:\"frankfurter\";i:4;s:7:\"hot dog\";i:5;s:6:\"hotdog\";i:6;s:6:\"kosher\";i:7;s:6:\"polish\";i:8;s:8:\"sandwich\";i:9;s:7:\"sausage\";i:10;s:6:\"vienna\";i:11;s:6:\"weiner\";}}s:12:\"fas fa-hotel\";a:2:{s:5:\"label\";s:5:\"Hotel\";s:6:\"search\";a:7:{i:0;s:8:\"building\";i:1;s:5:\"hotel\";i:2;s:3:\"inn\";i:3;s:7:\"lodging\";i:4;s:5:\"motel\";i:5;s:6:\"resort\";i:6;s:6:\"travel\";}}s:13:\"fab fa-hotjar\";a:2:{s:5:\"label\";s:6:\"Hotjar\";s:6:\"search\";a:1:{i:0;s:6:\"hotjar\";}}s:16:\"fas fa-hourglass\";a:2:{s:5:\"label\";s:17:\"Hourglass (solid)\";s:6:\"search\";a:8:{i:0;s:4:\"hour\";i:1;s:9:\"hourglass\";i:2;s:18:\"hourglass not done\";i:3;s:6:\"minute\";i:4;s:4:\"sand\";i:5;s:9:\"stopwatch\";i:6;s:4:\"time\";i:7;s:5:\"timer\";}}s:16:\"far fa-hourglass\";a:2:{s:5:\"label\";s:19:\"Hourglass (regular)\";s:6:\"search\";a:8:{i:0;s:4:\"hour\";i:1;s:9:\"hourglass\";i:2;s:18:\"hourglass not done\";i:3;s:6:\"minute\";i:4;s:4:\"sand\";i:5;s:9:\"stopwatch\";i:6;s:4:\"time\";i:7;s:5:\"timer\";}}s:20:\"fas fa-hourglass-end\";a:2:{s:5:\"label\";s:13:\"Hourglass End\";s:6:\"search\";a:11:{i:0;s:4:\"hour\";i:1;s:14:\"hourglass done\";i:2;s:6:\"minute\";i:3;s:7:\"pending\";i:4;s:4:\"sand\";i:5;s:9:\"stopwatch\";i:6;s:4:\"time\";i:7;s:5:\"timer\";i:8;s:7:\"waiting\";i:9;s:13:\"hourglass-end\";i:10;s:13:\"hourglass end\";}}s:21:\"fas fa-hourglass-half\";a:2:{s:5:\"label\";s:22:\"Hourglass Half (solid)\";s:6:\"search\";a:9:{i:0;s:4:\"hour\";i:1;s:6:\"minute\";i:2;s:7:\"pending\";i:3;s:4:\"sand\";i:4;s:9:\"stopwatch\";i:5;s:4:\"time\";i:6;s:7:\"waiting\";i:7;s:14:\"hourglass-half\";i:8;s:14:\"hourglass half\";}}s:21:\"far fa-hourglass-half\";a:2:{s:5:\"label\";s:24:\"Hourglass Half (regular)\";s:6:\"search\";a:9:{i:0;s:4:\"hour\";i:1;s:6:\"minute\";i:2;s:7:\"pending\";i:3;s:4:\"sand\";i:4;s:9:\"stopwatch\";i:5;s:4:\"time\";i:6;s:7:\"waiting\";i:7;s:14:\"hourglass-half\";i:8;s:14:\"hourglass half\";}}s:22:\"fas fa-hourglass-start\";a:2:{s:5:\"label\";s:15:\"Hourglass Start\";s:6:\"search\";a:8:{i:0;s:4:\"hour\";i:1;s:6:\"minute\";i:2;s:4:\"sand\";i:3;s:9:\"stopwatch\";i:4;s:4:\"time\";i:5;s:7:\"waiting\";i:6;s:15:\"hourglass-start\";i:7;s:15:\"hourglass start\";}}s:12:\"fas fa-house\";a:2:{s:5:\"label\";s:5:\"House\";s:6:\"search\";a:6:{i:0;s:5:\"abode\";i:1;s:8:\"building\";i:2;s:4:\"home\";i:3;s:5:\"house\";i:4;s:4:\"main\";i:5;s:9:\"residence\";}}s:20:\"fas fa-house-chimney\";a:2:{s:5:\"label\";s:13:\"House Chimney\";s:6:\"search\";a:9:{i:0;s:5:\"abode\";i:1;s:8:\"building\";i:2;s:7:\"chimney\";i:3;s:5:\"house\";i:4;s:4:\"main\";i:5;s:9:\"residence\";i:6;s:10:\"smokestack\";i:7;s:13:\"house-chimney\";i:8;s:13:\"house chimney\";}}s:26:\"fas fa-house-chimney-crack\";a:2:{s:5:\"label\";s:19:\"House Chimney Crack\";s:6:\"search\";a:8:{i:0;s:8:\"building\";i:1;s:11:\"devastation\";i:2;s:8:\"disaster\";i:3;s:10:\"earthquake\";i:4;s:4:\"home\";i:5;s:9:\"insurance\";i:6;s:19:\"house-chimney-crack\";i:7;s:19:\"house chimney crack\";}}s:28:\"fas fa-house-chimney-medical\";a:2:{s:5:\"label\";s:21:\"House Chimney Medical\";s:6:\"search\";a:10:{i:0;s:8:\"covid-19\";i:1;s:6:\"doctor\";i:2;s:20:\"general practitioner\";i:3;s:8:\"hospital\";i:4;s:9:\"infirmary\";i:5;s:8:\"medicine\";i:6;s:6:\"office\";i:7;s:10:\"outpatient\";i:8;s:21:\"house-chimney-medical\";i:9;s:21:\"house chimney medical\";}}s:25:\"fas fa-house-chimney-user\";a:2:{s:5:\"label\";s:18:\"House Chimney User\";s:6:\"search\";a:7:{i:0;s:8:\"covid-19\";i:1;s:4:\"home\";i:2;s:9:\"isolation\";i:3;s:10:\"quarantine\";i:4;s:3:\"uer\";i:5;s:18:\"house-chimney-user\";i:6;s:18:\"house chimney user\";}}s:27:\"fas fa-house-chimney-window\";a:2:{s:5:\"label\";s:20:\"House Chimney Window\";s:6:\"search\";a:7:{i:0;s:5:\"abode\";i:1;s:8:\"building\";i:2;s:6:\"family\";i:3;s:4:\"home\";i:4;s:9:\"residence\";i:5;s:20:\"house-chimney-window\";i:6;s:20:\"house chimney window\";}}s:25:\"fas fa-house-circle-check\";a:2:{s:5:\"label\";s:18:\"House Circle Check\";s:6:\"search\";a:11:{i:0;s:5:\"abode\";i:1;s:6:\"enable\";i:2;s:4:\"home\";i:3;s:5:\"house\";i:4;s:12:\"not affected\";i:5;s:2:\"ok\";i:6;s:4:\"okay\";i:7;s:8:\"validate\";i:8;s:7:\"working\";i:9;s:18:\"house-circle-check\";i:10;s:18:\"house circle check\";}}s:31:\"fas fa-house-circle-exclamation\";a:2:{s:5:\"label\";s:24:\"House Circle Exclamation\";s:6:\"search\";a:7:{i:0;s:5:\"abode\";i:1;s:8:\"affected\";i:2;s:6:\"failed\";i:3;s:4:\"home\";i:4;s:5:\"house\";i:5;s:24:\"house-circle-exclamation\";i:6;s:24:\"house circle exclamation\";}}s:25:\"fas fa-house-circle-xmark\";a:2:{s:5:\"label\";s:18:\"House Circle Xmark\";s:6:\"search\";a:7:{i:0;s:5:\"abode\";i:1;s:7:\"destroy\";i:2;s:4:\"home\";i:3;s:5:\"house\";i:4;s:7:\"uncheck\";i:5;s:18:\"house-circle-xmark\";i:6;s:18:\"house circle xmark\";}}s:18:\"fas fa-house-crack\";a:2:{s:5:\"label\";s:11:\"House Crack\";s:6:\"search\";a:8:{i:0;s:8:\"building\";i:1;s:11:\"devastation\";i:2;s:8:\"disaster\";i:3;s:10:\"earthquake\";i:4;s:4:\"home\";i:5;s:9:\"insurance\";i:6;s:11:\"house-crack\";i:7;s:11:\"house crack\";}}s:17:\"fas fa-house-fire\";a:2:{s:5:\"label\";s:10:\"House Fire\";s:6:\"search\";a:5:{i:0;s:4:\"burn\";i:1;s:9:\"emergency\";i:2;s:4:\"home\";i:3;s:10:\"house-fire\";i:4;s:10:\"house fire\";}}s:17:\"fas fa-house-flag\";a:2:{s:5:\"label\";s:10:\"House Flag\";s:6:\"search\";a:4:{i:0;s:4:\"camp\";i:1;s:4:\"home\";i:2;s:10:\"house-flag\";i:3;s:10:\"house flag\";}}s:24:\"fas fa-house-flood-water\";a:2:{s:5:\"label\";s:17:\"House Flood Water\";s:6:\"search\";a:5:{i:0;s:6:\"damage\";i:1;s:5:\"flood\";i:2;s:5:\"water\";i:3;s:17:\"house-flood-water\";i:4;s:17:\"house flood water\";}}s:43:\"fas fa-house-flood-water-circle-arrow-right\";a:2:{s:5:\"label\";s:36:\"House Flood Water Circle Arrow Right\";s:6:\"search\";a:5:{i:0;s:6:\"damage\";i:1;s:5:\"flood\";i:2;s:5:\"water\";i:3;s:36:\"house-flood-water-circle-arrow-right\";i:4;s:36:\"house flood water circle arrow right\";}}s:19:\"fas fa-house-laptop\";a:2:{s:5:\"label\";s:12:\"House Laptop\";s:6:\"search\";a:8:{i:0;s:8:\"computer\";i:1;s:8:\"covid-19\";i:2;s:6:\"device\";i:3;s:6:\"office\";i:4;s:6:\"remote\";i:5;s:14:\"work from home\";i:6;s:12:\"house-laptop\";i:7;s:12:\"house laptop\";}}s:17:\"fas fa-house-lock\";a:2:{s:5:\"label\";s:10:\"House Lock\";s:6:\"search\";a:9:{i:0;s:6:\"closed\";i:1;s:4:\"home\";i:2;s:5:\"house\";i:3;s:8:\"lockdown\";i:4;s:7:\"padlock\";i:5;s:7:\"privacy\";i:6;s:10:\"quarantine\";i:7;s:10:\"house-lock\";i:8;s:10:\"house lock\";}}s:20:\"fas fa-house-medical\";a:2:{s:5:\"label\";s:13:\"House Medical\";s:6:\"search\";a:12:{i:0;s:8:\"covid-19\";i:1;s:6:\"doctor\";i:2;s:8:\"facility\";i:3;s:20:\"general practitioner\";i:4;s:6:\"health\";i:5;s:8:\"hospital\";i:6;s:9:\"infirmary\";i:7;s:8:\"medicine\";i:8;s:6:\"office\";i:9;s:10:\"outpatient\";i:10;s:13:\"house-medical\";i:11;s:13:\"house medical\";}}s:33:\"fas fa-house-medical-circle-check\";a:2:{s:5:\"label\";s:26:\"House Medical Circle Check\";s:6:\"search\";a:10:{i:0;s:6:\"clinic\";i:1;s:6:\"enable\";i:2;s:8:\"hospital\";i:3;s:12:\"not affected\";i:4;s:2:\"ok\";i:5;s:4:\"okay\";i:6;s:8:\"validate\";i:7;s:7:\"working\";i:8;s:26:\"house-medical-circle-check\";i:9;s:26:\"house medical circle check\";}}s:39:\"fas fa-house-medical-circle-exclamation\";a:2:{s:5:\"label\";s:32:\"House Medical Circle Exclamation\";s:6:\"search\";a:6:{i:0;s:8:\"affected\";i:1;s:6:\"clinic\";i:2;s:6:\"failed\";i:3;s:8:\"hospital\";i:4;s:32:\"house-medical-circle-exclamation\";i:5;s:32:\"house medical circle exclamation\";}}s:33:\"fas fa-house-medical-circle-xmark\";a:2:{s:5:\"label\";s:26:\"House Medical Circle Xmark\";s:6:\"search\";a:6:{i:0;s:6:\"clinic\";i:1;s:7:\"destroy\";i:2;s:8:\"hospital\";i:3;s:7:\"uncheck\";i:4;s:26:\"house-medical-circle-xmark\";i:5;s:26:\"house medical circle xmark\";}}s:25:\"fas fa-house-medical-flag\";a:2:{s:5:\"label\";s:18:\"House Medical Flag\";s:6:\"search\";a:5:{i:0;s:6:\"clinic\";i:1;s:8:\"hospital\";i:2;s:4:\"mash\";i:3;s:18:\"house-medical-flag\";i:4;s:18:\"house medical flag\";}}s:19:\"fas fa-house-signal\";a:2:{s:5:\"label\";s:12:\"House Signal\";s:6:\"search\";a:11:{i:0;s:5:\"abode\";i:1;s:8:\"building\";i:2;s:7:\"connect\";i:3;s:6:\"family\";i:4;s:4:\"home\";i:5;s:9:\"residence\";i:6;s:10:\"smart home\";i:7;s:4:\"wifi\";i:8;s:3:\"www\";i:9;s:12:\"house-signal\";i:10;s:12:\"house signal\";}}s:20:\"fas fa-house-tsunami\";a:2:{s:5:\"label\";s:13:\"House Tsunami\";s:6:\"search\";a:6:{i:0;s:6:\"damage\";i:1;s:5:\"flood\";i:2;s:10:\"tidal wave\";i:3;s:4:\"wave\";i:4;s:13:\"house-tsunami\";i:5;s:13:\"house tsunami\";}}s:17:\"fas fa-house-user\";a:2:{s:5:\"label\";s:10:\"House User\";s:6:\"search\";a:4:{i:0;s:5:\"house\";i:1;s:3:\"uer\";i:2;s:10:\"house-user\";i:3;s:10:\"house user\";}}s:12:\"fab fa-houzz\";a:2:{s:5:\"label\";s:5:\"Houzz\";s:6:\"search\";a:1:{i:0;s:5:\"houzz\";}}s:19:\"fas fa-hryvnia-sign\";a:2:{s:5:\"label\";s:12:\"Hryvnia Sign\";s:6:\"search\";a:4:{i:0;s:12:\"Hryvnia Sign\";i:1;s:8:\"currency\";i:2;s:12:\"hryvnia-sign\";i:3;s:12:\"hryvnia sign\";}}s:12:\"fab fa-html5\";a:2:{s:5:\"label\";s:11:\"HTML 5 Logo\";s:6:\"search\";a:2:{i:0;s:5:\"html5\";i:1;s:11:\"html 5 logo\";}}s:14:\"fab fa-hubspot\";a:2:{s:5:\"label\";s:7:\"HubSpot\";s:6:\"search\";a:1:{i:0;s:7:\"hubspot\";}}s:16:\"fas fa-hurricane\";a:2:{s:5:\"label\";s:9:\"Hurricane\";s:6:\"search\";a:6:{i:0;s:15:\"coriolis effect\";i:1;s:3:\"eye\";i:2;s:5:\"storm\";i:3;s:16:\"tropical cyclone\";i:4;s:7:\"typhoon\";i:5;s:9:\"hurricane\";}}s:8:\"fas fa-i\";a:2:{s:5:\"label\";s:1:\"I\";s:6:\"search\";a:4:{i:0;s:22:\"Latin Capital Letter I\";i:1;s:20:\"Latin Small Letter I\";i:2;s:6:\"letter\";i:3;s:1:\"i\";}}s:15:\"fas fa-i-cursor\";a:2:{s:5:\"label\";s:8:\"I Cursor\";s:6:\"search\";a:6:{i:0;s:7:\"editing\";i:1;s:6:\"i-beam\";i:2;s:4:\"type\";i:3;s:7:\"writing\";i:4;s:8:\"i-cursor\";i:5;s:8:\"i cursor\";}}s:16:\"fas fa-ice-cream\";a:2:{s:5:\"label\";s:9:\"Ice Cream\";s:6:\"search\";a:13:{i:0;s:9:\"chocolate\";i:1;s:4:\"cone\";i:2;s:5:\"cream\";i:3;s:7:\"dessert\";i:4;s:6:\"frozen\";i:5;s:3:\"ice\";i:6;s:9:\"ice cream\";i:7;s:5:\"scoop\";i:8;s:6:\"sorbet\";i:9;s:5:\"sweet\";i:10;s:7:\"vanilla\";i:11;s:6:\"yogurt\";i:12;s:9:\"ice-cream\";}}s:14:\"fas fa-icicles\";a:2:{s:5:\"label\";s:7:\"Icicles\";s:6:\"search\";a:7:{i:0;s:4:\"cold\";i:1;s:6:\"frozen\";i:2;s:7:\"hanging\";i:3;s:3:\"ice\";i:4;s:8:\"seasonal\";i:5;s:5:\"sharp\";i:6;s:7:\"icicles\";}}s:12:\"fas fa-icons\";a:2:{s:5:\"label\";s:5:\"Icons\";s:6:\"search\";a:9:{i:0;s:4:\"bolt\";i:1;s:8:\"category\";i:2;s:5:\"emoji\";i:3;s:5:\"heart\";i:4;s:5:\"image\";i:5;s:5:\"music\";i:6;s:5:\"photo\";i:7;s:7:\"symbols\";i:8;s:5:\"icons\";}}s:15:\"fas fa-id-badge\";a:2:{s:5:\"label\";s:16:\"Id Badge (solid)\";s:6:\"search\";a:9:{i:0;s:7:\"address\";i:1;s:7:\"contact\";i:2;s:14:\"identification\";i:3;s:7:\"license\";i:4;s:7:\"profile\";i:5;s:3:\"uer\";i:6;s:8:\"username\";i:7;s:8:\"id-badge\";i:8;s:8:\"id badge\";}}s:15:\"far fa-id-badge\";a:2:{s:5:\"label\";s:18:\"Id Badge (regular)\";s:6:\"search\";a:9:{i:0;s:7:\"address\";i:1;s:7:\"contact\";i:2;s:14:\"identification\";i:3;s:7:\"license\";i:4;s:7:\"profile\";i:5;s:3:\"uer\";i:6;s:8:\"username\";i:7;s:8:\"id-badge\";i:8;s:8:\"id badge\";}}s:14:\"fas fa-id-card\";a:2:{s:5:\"label\";s:15:\"Id Card (solid)\";s:6:\"search\";a:11:{i:0;s:7:\"contact\";i:1;s:12:\"demographics\";i:2;s:8:\"document\";i:3;s:14:\"identification\";i:4;s:6:\"issued\";i:5;s:7:\"profile\";i:6;s:12:\"registration\";i:7;s:3:\"uer\";i:8;s:8:\"username\";i:9;s:7:\"id-card\";i:10;s:7:\"id card\";}}s:14:\"far fa-id-card\";a:2:{s:5:\"label\";s:17:\"Id Card (regular)\";s:6:\"search\";a:11:{i:0;s:7:\"contact\";i:1;s:12:\"demographics\";i:2;s:8:\"document\";i:3;s:14:\"identification\";i:4;s:6:\"issued\";i:5;s:7:\"profile\";i:6;s:12:\"registration\";i:7;s:3:\"uer\";i:8;s:8:\"username\";i:9;s:7:\"id-card\";i:10;s:7:\"id card\";}}s:19:\"fas fa-id-card-clip\";a:2:{s:5:\"label\";s:12:\"Id Card Clip\";s:6:\"search\";a:10:{i:0;s:7:\"contact\";i:1;s:12:\"demographics\";i:2;s:8:\"document\";i:3;s:14:\"identification\";i:4;s:6:\"issued\";i:5;s:7:\"profile\";i:6;s:3:\"uer\";i:7;s:8:\"username\";i:8;s:12:\"id-card-clip\";i:9;s:12:\"id card clip\";}}s:12:\"fab fa-ideal\";a:2:{s:5:\"label\";s:5:\"iDeal\";s:6:\"search\";a:1:{i:0;s:5:\"ideal\";}}s:12:\"fas fa-igloo\";a:2:{s:5:\"label\";s:5:\"Igloo\";s:6:\"search\";a:8:{i:0;s:4:\"dome\";i:1;s:8:\"dwelling\";i:2;s:6:\"eskimo\";i:3;s:4:\"home\";i:4;s:5:\"house\";i:5;s:3:\"ice\";i:6;s:4:\"snow\";i:7;s:5:\"igloo\";}}s:12:\"fas fa-image\";a:2:{s:5:\"label\";s:13:\"Image (solid)\";s:6:\"search\";a:6:{i:0;s:5:\"album\";i:1;s:3:\"img\";i:2;s:9:\"landscape\";i:3;s:5:\"photo\";i:4;s:7:\"picture\";i:5;s:5:\"image\";}}s:12:\"far fa-image\";a:2:{s:5:\"label\";s:15:\"Image (regular)\";s:6:\"search\";a:6:{i:0;s:5:\"album\";i:1;s:3:\"img\";i:2;s:9:\"landscape\";i:3;s:5:\"photo\";i:4;s:7:\"picture\";i:5;s:5:\"image\";}}s:21:\"fas fa-image-portrait\";a:2:{s:5:\"label\";s:14:\"Image Portrait\";s:6:\"search\";a:10:{i:0;s:2:\"id\";i:1;s:5:\"image\";i:2;s:3:\"img\";i:3;s:5:\"photo\";i:4;s:7:\"picture\";i:5;s:6:\"selfie\";i:6;s:3:\"uer\";i:7;s:8:\"username\";i:8;s:14:\"image-portrait\";i:9;s:14:\"image portrait\";}}s:13:\"fas fa-images\";a:2:{s:5:\"label\";s:14:\"Images (solid)\";s:6:\"search\";a:6:{i:0;s:5:\"album\";i:1;s:3:\"img\";i:2;s:9:\"landscape\";i:3;s:5:\"photo\";i:4;s:7:\"picture\";i:5;s:6:\"images\";}}s:13:\"far fa-images\";a:2:{s:5:\"label\";s:16:\"Images (regular)\";s:6:\"search\";a:6:{i:0;s:5:\"album\";i:1;s:3:\"img\";i:2;s:9:\"landscape\";i:3;s:5:\"photo\";i:4;s:7:\"picture\";i:5;s:6:\"images\";}}s:11:\"fab fa-imdb\";a:2:{s:5:\"label\";s:4:\"IMDB\";s:6:\"search\";a:1:{i:0;s:4:\"imdb\";}}s:12:\"fas fa-inbox\";a:2:{s:5:\"label\";s:5:\"Inbox\";s:6:\"search\";a:6:{i:0;s:7:\"archive\";i:1;s:4:\"desk\";i:2;s:5:\"email\";i:3;s:4:\"mail\";i:4;s:7:\"message\";i:5;s:5:\"inbox\";}}s:13:\"fas fa-indent\";a:2:{s:5:\"label\";s:6:\"Indent\";s:6:\"search\";a:5:{i:0;s:5:\"align\";i:1;s:7:\"justify\";i:2;s:9:\"paragraph\";i:3;s:3:\"tab\";i:4;s:6:\"indent\";}}s:24:\"fas fa-indian-rupee-sign\";a:2:{s:5:\"label\";s:17:\"Indian Rupee Sign\";s:6:\"search\";a:4:{i:0;s:17:\"Indian Rupee Sign\";i:1;s:8:\"currency\";i:2;s:17:\"indian-rupee-sign\";i:3;s:17:\"indian rupee sign\";}}s:15:\"fas fa-industry\";a:2:{s:5:\"label\";s:8:\"Industry\";s:6:\"search\";a:7:{i:0;s:8:\"building\";i:1;s:7:\"factory\";i:2;s:10:\"industrial\";i:3;s:13:\"manufacturing\";i:4;s:4:\"mill\";i:5;s:9:\"warehouse\";i:6;s:8:\"industry\";}}s:15:\"fas fa-infinity\";a:2:{s:5:\"label\";s:8:\"Infinity\";s:6:\"search\";a:7:{i:0;s:8:\"Infinity\";i:1;s:8:\"eternity\";i:2;s:7:\"forever\";i:3;s:8:\"infinity\";i:4;s:4:\"math\";i:5;s:9:\"unbounded\";i:6;s:9:\"universal\";}}s:11:\"fas fa-info\";a:2:{s:5:\"label\";s:4:\"Info\";s:6:\"search\";a:6:{i:0;s:7:\"details\";i:1;s:4:\"help\";i:2;s:11:\"information\";i:3;s:4:\"more\";i:4;s:7:\"support\";i:5;s:4:\"info\";}}s:16:\"fab fa-instagram\";a:2:{s:5:\"label\";s:9:\"Instagram\";s:6:\"search\";a:1:{i:0;s:9:\"instagram\";}}s:15:\"fab fa-instalod\";a:2:{s:5:\"label\";s:8:\"InstaLOD\";s:6:\"search\";a:1:{i:0;s:8:\"instalod\";}}s:15:\"fab fa-intercom\";a:2:{s:5:\"label\";s:8:\"Intercom\";s:6:\"search\";a:4:{i:0;s:3:\"app\";i:1;s:8:\"customer\";i:2;s:9:\"messenger\";i:3;s:8:\"intercom\";}}s:24:\"fab fa-internet-explorer\";a:2:{s:5:\"label\";s:17:\"Internet-explorer\";s:6:\"search\";a:3:{i:0;s:7:\"browser\";i:1;s:2:\"ie\";i:2;s:17:\"internet-explorer\";}}s:15:\"fab fa-invision\";a:2:{s:5:\"label\";s:8:\"InVision\";s:6:\"search\";a:4:{i:0;s:3:\"app\";i:1;s:6:\"design\";i:2;s:9:\"interface\";i:3;s:8:\"invision\";}}s:14:\"fab fa-ioxhost\";a:2:{s:5:\"label\";s:7:\"ioxhost\";s:6:\"search\";a:1:{i:0;s:7:\"ioxhost\";}}s:13:\"fas fa-italic\";a:2:{s:5:\"label\";s:6:\"Italic\";s:6:\"search\";a:7:{i:0;s:4:\"edit\";i:1;s:8:\"emphasis\";i:2;s:4:\"font\";i:3;s:6:\"format\";i:4;s:4:\"text\";i:5;s:4:\"type\";i:6;s:6:\"italic\";}}s:14:\"fab fa-itch-io\";a:2:{s:5:\"label\";s:7:\"itch.io\";s:6:\"search\";a:2:{i:0;s:7:\"itch-io\";i:1;s:7:\"itch.io\";}}s:13:\"fab fa-itunes\";a:2:{s:5:\"label\";s:6:\"iTunes\";s:6:\"search\";a:1:{i:0;s:6:\"itunes\";}}s:18:\"fab fa-itunes-note\";a:2:{s:5:\"label\";s:11:\"Itunes Note\";s:6:\"search\";a:2:{i:0;s:11:\"itunes-note\";i:1;s:11:\"itunes note\";}}s:8:\"fas fa-j\";a:2:{s:5:\"label\";s:1:\"J\";s:6:\"search\";a:4:{i:0;s:22:\"Latin Capital Letter J\";i:1;s:20:\"Latin Small Letter J\";i:2;s:6:\"letter\";i:3;s:1:\"j\";}}s:10:\"fas fa-jar\";a:2:{s:5:\"label\";s:3:\"Jar\";s:6:\"search\";a:4:{i:0;s:3:\"jam\";i:1;s:5:\"jelly\";i:2;s:7:\"storage\";i:3;s:3:\"jar\";}}s:16:\"fas fa-jar-wheat\";a:2:{s:5:\"label\";s:9:\"Jar Wheat\";s:6:\"search\";a:4:{i:0;s:5:\"flour\";i:1;s:7:\"storage\";i:2;s:9:\"jar-wheat\";i:3;s:9:\"jar wheat\";}}s:11:\"fab fa-java\";a:2:{s:5:\"label\";s:4:\"Java\";s:6:\"search\";a:1:{i:0;s:4:\"java\";}}s:11:\"fas fa-jedi\";a:2:{s:5:\"label\";s:4:\"Jedi\";s:6:\"search\";a:7:{i:0;s:5:\"crest\";i:1;s:5:\"force\";i:2;s:4:\"sith\";i:3;s:9:\"skywalker\";i:4;s:9:\"star wars\";i:5;s:4:\"yoda\";i:6;s:4:\"jedi\";}}s:17:\"fab fa-jedi-order\";a:2:{s:5:\"label\";s:10:\"Jedi Order\";s:6:\"search\";a:3:{i:0;s:9:\"star wars\";i:1;s:10:\"jedi-order\";i:2;s:10:\"jedi order\";}}s:14:\"fab fa-jenkins\";a:2:{s:5:\"label\";s:6:\"Jenkis\";s:6:\"search\";a:2:{i:0;s:7:\"jenkins\";i:1;s:6:\"jenkis\";}}s:18:\"fas fa-jet-fighter\";a:2:{s:5:\"label\";s:11:\"Jet Fighter\";s:6:\"search\";a:16:{i:0;s:8:\"airforce\";i:1;s:8:\"airplane\";i:2;s:7:\"airport\";i:3;s:4:\"fast\";i:4;s:3:\"fly\";i:5;s:5:\"goose\";i:6;s:7:\"marines\";i:7;s:8:\"maverick\";i:8;s:8:\"military\";i:9;s:5:\"plane\";i:10;s:5:\"quick\";i:11;s:7:\"top gun\";i:12;s:14:\"transportation\";i:13;s:6:\"travel\";i:14;s:11:\"jet-fighter\";i:15;s:11:\"jet fighter\";}}s:21:\"fas fa-jet-fighter-up\";a:2:{s:5:\"label\";s:14:\"Jet Fighter Up\";s:6:\"search\";a:16:{i:0;s:8:\"airforce\";i:1;s:8:\"airplane\";i:2;s:7:\"airport\";i:3;s:4:\"fast\";i:4;s:3:\"fly\";i:5;s:5:\"goose\";i:6;s:7:\"marines\";i:7;s:8:\"maverick\";i:8;s:8:\"military\";i:9;s:5:\"plane\";i:10;s:5:\"quick\";i:11;s:7:\"top gun\";i:12;s:14:\"transportation\";i:13;s:6:\"travel\";i:14;s:14:\"jet-fighter-up\";i:15;s:14:\"jet fighter up\";}}s:11:\"fab fa-jira\";a:2:{s:5:\"label\";s:4:\"Jira\";s:6:\"search\";a:2:{i:0;s:9:\"atlassian\";i:1;s:4:\"jira\";}}s:12:\"fab fa-joget\";a:2:{s:5:\"label\";s:5:\"Joget\";s:6:\"search\";a:1:{i:0;s:5:\"joget\";}}s:12:\"fas fa-joint\";a:2:{s:5:\"label\";s:5:\"Joint\";s:6:\"search\";a:10:{i:0;s:5:\"blunt\";i:1;s:8:\"cannabis\";i:2;s:6:\"doobie\";i:3;s:5:\"drugs\";i:4;s:9:\"marijuana\";i:5;s:5:\"roach\";i:6;s:5:\"smoke\";i:7;s:7:\"smoking\";i:8;s:6:\"spliff\";i:9;s:5:\"joint\";}}s:13:\"fab fa-joomla\";a:2:{s:5:\"label\";s:11:\"Joomla Logo\";s:6:\"search\";a:2:{i:0;s:6:\"joomla\";i:1;s:11:\"joomla logo\";}}s:9:\"fab fa-js\";a:2:{s:5:\"label\";s:15:\"JavaScript (JS)\";s:6:\"search\";a:2:{i:0;s:2:\"js\";i:1;s:15:\"javascript (js)\";}}s:15:\"fab fa-jsfiddle\";a:2:{s:5:\"label\";s:8:\"jsFiddle\";s:6:\"search\";a:1:{i:0;s:8:\"jsfiddle\";}}s:20:\"fas fa-jug-detergent\";a:2:{s:5:\"label\";s:13:\"Jug Detergent\";s:6:\"search\";a:6:{i:0;s:9:\"detergent\";i:1;s:7:\"laundry\";i:2;s:4:\"soap\";i:3;s:4:\"wash\";i:4;s:13:\"jug-detergent\";i:5;s:13:\"jug detergent\";}}s:10:\"fab fa-jxl\";a:2:{s:5:\"label\";s:3:\"Jxl\";s:6:\"search\";a:1:{i:0;s:3:\"jxl\";}}s:8:\"fas fa-k\";a:2:{s:5:\"label\";s:1:\"K\";s:6:\"search\";a:4:{i:0;s:22:\"Latin Capital Letter K\";i:1;s:20:\"Latin Small Letter K\";i:2;s:6:\"letter\";i:3;s:1:\"k\";}}s:12:\"fas fa-kaaba\";a:2:{s:5:\"label\";s:5:\"Kaaba\";s:6:\"search\";a:7:{i:0;s:6:\"Muslim\";i:1;s:8:\"building\";i:2;s:4:\"cube\";i:3;s:5:\"islam\";i:4;s:5:\"kaaba\";i:5;s:6:\"muslim\";i:6;s:8:\"religion\";}}s:13:\"fab fa-kaggle\";a:2:{s:5:\"label\";s:6:\"Kaggle\";s:6:\"search\";a:1:{i:0;s:6:\"kaggle\";}}s:10:\"fas fa-key\";a:2:{s:5:\"label\";s:3:\"Key\";s:6:\"search\";a:6:{i:0;s:3:\"key\";i:1;s:4:\"lock\";i:2;s:8:\"password\";i:3;s:7:\"private\";i:4;s:6:\"secret\";i:5;s:6:\"unlock\";}}s:14:\"fab fa-keybase\";a:2:{s:5:\"label\";s:7:\"Keybase\";s:6:\"search\";a:1:{i:0;s:7:\"keybase\";}}s:15:\"fas fa-keyboard\";a:2:{s:5:\"label\";s:16:\"Keyboard (solid)\";s:6:\"search\";a:8:{i:0;s:9:\"accessory\";i:1;s:8:\"computer\";i:2;s:4:\"edit\";i:3;s:5:\"input\";i:4;s:8:\"keyboard\";i:5;s:4:\"text\";i:6;s:4:\"type\";i:7;s:5:\"write\";}}s:15:\"far fa-keyboard\";a:2:{s:5:\"label\";s:18:\"Keyboard (regular)\";s:6:\"search\";a:8:{i:0;s:9:\"accessory\";i:1;s:8:\"computer\";i:2;s:4:\"edit\";i:3;s:5:\"input\";i:4;s:8:\"keyboard\";i:5;s:4:\"text\";i:6;s:4:\"type\";i:7;s:5:\"write\";}}s:13:\"fab fa-keycdn\";a:2:{s:5:\"label\";s:6:\"KeyCDN\";s:6:\"search\";a:1:{i:0;s:6:\"keycdn\";}}s:13:\"fas fa-khanda\";a:2:{s:5:\"label\";s:6:\"Khanda\";s:6:\"search\";a:6:{i:0;s:10:\"Adi Shakti\";i:1;s:7:\"chakkar\";i:2;s:4:\"sikh\";i:3;s:7:\"sikhism\";i:4;s:5:\"sword\";i:5;s:6:\"khanda\";}}s:18:\"fab fa-kickstarter\";a:2:{s:5:\"label\";s:11:\"Kickstarter\";s:6:\"search\";a:1:{i:0;s:11:\"kickstarter\";}}s:20:\"fab fa-kickstarter-k\";a:2:{s:5:\"label\";s:13:\"Kickstarter K\";s:6:\"search\";a:2:{i:0;s:13:\"kickstarter-k\";i:1;s:13:\"kickstarter k\";}}s:15:\"fas fa-kip-sign\";a:2:{s:5:\"label\";s:8:\"Kip Sign\";s:6:\"search\";a:4:{i:0;s:8:\"Kip Sign\";i:1;s:8:\"currency\";i:2;s:8:\"kip-sign\";i:3;s:8:\"kip sign\";}}s:18:\"fas fa-kit-medical\";a:2:{s:5:\"label\";s:11:\"Kit Medical\";s:6:\"search\";a:7:{i:0;s:9:\"emergency\";i:1;s:3:\"emt\";i:2;s:6:\"health\";i:3;s:7:\"medical\";i:4;s:6:\"rescue\";i:5;s:11:\"kit-medical\";i:6;s:11:\"kit medical\";}}s:18:\"fas fa-kitchen-set\";a:2:{s:5:\"label\";s:11:\"Kitchen Set\";s:6:\"search\";a:9:{i:0;s:4:\"chef\";i:1;s:4:\"cook\";i:2;s:3:\"cup\";i:3;s:7:\"kitchen\";i:4;s:3:\"pan\";i:5;s:3:\"pot\";i:6;s:7:\"skillet\";i:7;s:11:\"kitchen-set\";i:8;s:11:\"kitchen set\";}}s:16:\"fas fa-kiwi-bird\";a:2:{s:5:\"label\";s:9:\"Kiwi Bird\";s:6:\"search\";a:5:{i:0;s:4:\"bird\";i:1;s:5:\"fauna\";i:2;s:11:\"new zealand\";i:3;s:9:\"kiwi-bird\";i:4;s:9:\"kiwi bird\";}}s:13:\"fab fa-korvue\";a:2:{s:5:\"label\";s:6:\"KORVUE\";s:6:\"search\";a:1:{i:0;s:6:\"korvue\";}}s:8:\"fas fa-l\";a:2:{s:5:\"label\";s:1:\"L\";s:6:\"search\";a:4:{i:0;s:22:\"Latin Capital Letter L\";i:1;s:20:\"Latin Small Letter L\";i:2;s:6:\"letter\";i:3;s:1:\"l\";}}s:19:\"fas fa-land-mine-on\";a:2:{s:5:\"label\";s:12:\"Land Mine On\";s:6:\"search\";a:6:{i:0;s:4:\"bomb\";i:1;s:6:\"danger\";i:2;s:9:\"explosion\";i:3;s:3:\"war\";i:4;s:12:\"land-mine-on\";i:5;s:12:\"land mine on\";}}s:15:\"fas fa-landmark\";a:2:{s:5:\"label\";s:8:\"Landmark\";s:6:\"search\";a:9:{i:0;s:8:\"building\";i:1;s:9:\"classical\";i:2;s:8:\"historic\";i:3;s:9:\"memorable\";i:4;s:8:\"monument\";i:5;s:6:\"museum\";i:6;s:8:\"politics\";i:7;s:7:\"society\";i:8;s:8:\"landmark\";}}s:20:\"fas fa-landmark-dome\";a:2:{s:5:\"label\";s:13:\"Landmark Dome\";s:6:\"search\";a:7:{i:0;s:8:\"building\";i:1;s:8:\"historic\";i:2;s:9:\"memorable\";i:3;s:8:\"monument\";i:4;s:8:\"politics\";i:5;s:13:\"landmark-dome\";i:6;s:13:\"landmark dome\";}}s:20:\"fas fa-landmark-flag\";a:2:{s:5:\"label\";s:13:\"Landmark Flag\";s:6:\"search\";a:6:{i:0;s:7:\"capitol\";i:1;s:4:\"flag\";i:2;s:8:\"landmark\";i:3;s:8:\"memorial\";i:4;s:13:\"landmark-flag\";i:5;s:13:\"landmark flag\";}}s:15:\"fas fa-language\";a:2:{s:5:\"label\";s:8:\"Language\";s:6:\"search\";a:7:{i:0;s:7:\"dialect\";i:1;s:5:\"idiom\";i:2;s:8:\"localize\";i:3;s:6:\"speech\";i:4;s:9:\"translate\";i:5;s:10:\"vernacular\";i:6;s:8:\"language\";}}s:13:\"fas fa-laptop\";a:2:{s:5:\"label\";s:6:\"Laptop\";s:6:\"search\";a:13:{i:0;s:8:\"computer\";i:1;s:3:\"cpu\";i:2;s:4:\"dell\";i:3;s:4:\"demo\";i:4;s:6:\"device\";i:5;s:6:\"fabook\";i:6;s:2:\"fb\";i:7;s:6:\"laptop\";i:8;s:3:\"mac\";i:9;s:7:\"macbook\";i:10;s:7:\"machine\";i:11;s:2:\"pc\";i:12;s:8:\"personal\";}}s:18:\"fas fa-laptop-code\";a:2:{s:5:\"label\";s:11:\"Laptop Code\";s:6:\"search\";a:16:{i:0;s:8:\"computer\";i:1;s:3:\"cpu\";i:2;s:4:\"dell\";i:3;s:4:\"demo\";i:4;s:7:\"develop\";i:5;s:6:\"device\";i:6;s:6:\"fabook\";i:7;s:2:\"fb\";i:8;s:3:\"mac\";i:9;s:7:\"macbook\";i:10;s:7:\"machine\";i:11;s:5:\"mysql\";i:12;s:2:\"pc\";i:13;s:3:\"sql\";i:14;s:11:\"laptop-code\";i:15;s:11:\"laptop code\";}}s:18:\"fas fa-laptop-file\";a:2:{s:5:\"label\";s:11:\"Laptop File\";s:6:\"search\";a:7:{i:0;s:8:\"computer\";i:1;s:9:\"education\";i:2;s:6:\"laptop\";i:3;s:8:\"learning\";i:4;s:11:\"remote work\";i:5;s:11:\"laptop-file\";i:6;s:11:\"laptop file\";}}s:21:\"fas fa-laptop-medical\";a:2:{s:5:\"label\";s:14:\"Laptop Medical\";s:6:\"search\";a:7:{i:0;s:8:\"computer\";i:1;s:6:\"device\";i:2;s:3:\"ehr\";i:3;s:25:\"electronic health records\";i:4;s:7:\"history\";i:5;s:14:\"laptop-medical\";i:6;s:14:\"laptop medical\";}}s:14:\"fab fa-laravel\";a:2:{s:5:\"label\";s:7:\"Laravel\";s:6:\"search\";a:1:{i:0;s:7:\"laravel\";}}s:16:\"fas fa-lari-sign\";a:2:{s:5:\"label\";s:9:\"Lari Sign\";s:6:\"search\";a:4:{i:0;s:9:\"Lari Sign\";i:1;s:8:\"currency\";i:2;s:9:\"lari-sign\";i:3;s:9:\"lari sign\";}}s:13:\"fab fa-lastfm\";a:2:{s:5:\"label\";s:7:\"last.fm\";s:6:\"search\";a:2:{i:0;s:6:\"lastfm\";i:1;s:7:\"last.fm\";}}s:18:\"fas fa-layer-group\";a:2:{s:5:\"label\";s:11:\"Layer Group\";s:6:\"search\";a:9:{i:0;s:7:\"arrange\";i:1;s:8:\"category\";i:2;s:7:\"develop\";i:3;s:6:\"layers\";i:4;s:3:\"map\";i:5;s:8:\"platform\";i:6;s:5:\"stack\";i:7;s:11:\"layer-group\";i:8;s:11:\"layer group\";}}s:11:\"fas fa-leaf\";a:2:{s:5:\"label\";s:4:\"Leaf\";s:6:\"search\";a:6:{i:0;s:3:\"eco\";i:1;s:5:\"flora\";i:2;s:6:\"nature\";i:3;s:5:\"plant\";i:4;s:5:\"vegan\";i:5;s:4:\"leaf\";}}s:14:\"fab fa-leanpub\";a:2:{s:5:\"label\";s:7:\"Leanpub\";s:6:\"search\";a:1:{i:0;s:7:\"leanpub\";}}s:16:\"fas fa-left-long\";a:2:{s:5:\"label\";s:9:\"Left Long\";s:6:\"search\";a:5:{i:0;s:4:\"back\";i:1;s:15:\"long-arrow-left\";i:2;s:8:\"previous\";i:3;s:9:\"left-long\";i:4;s:9:\"left long\";}}s:17:\"fas fa-left-right\";a:2:{s:5:\"label\";s:10:\"Left Right\";s:6:\"search\";a:10:{i:0;s:5:\"arrow\";i:1;s:8:\"arrows-h\";i:2;s:6:\"expand\";i:3;s:10:\"horizontal\";i:4;s:9:\"landscape\";i:5;s:16:\"left-right arrow\";i:6;s:6:\"resize\";i:7;s:4:\"wide\";i:8;s:10:\"left-right\";i:9;s:10:\"left right\";}}s:12:\"fas fa-lemon\";a:2:{s:5:\"label\";s:13:\"Lemon (solid)\";s:6:\"search\";a:6:{i:0;s:6:\"citrus\";i:1;s:5:\"fruit\";i:2;s:5:\"lemon\";i:3;s:8:\"lemonade\";i:4;s:4:\"lime\";i:5;s:4:\"tart\";}}s:12:\"far fa-lemon\";a:2:{s:5:\"label\";s:15:\"Lemon (regular)\";s:6:\"search\";a:6:{i:0;s:6:\"citrus\";i:1;s:5:\"fruit\";i:2;s:5:\"lemon\";i:3;s:8:\"lemonade\";i:4;s:4:\"lime\";i:5;s:4:\"tart\";}}s:11:\"fab fa-less\";a:2:{s:5:\"label\";s:4:\"Less\";s:6:\"search\";a:1:{i:0;s:4:\"less\";}}s:16:\"fas fa-less-than\";a:2:{s:5:\"label\";s:9:\"Less Than\";s:6:\"search\";a:6:{i:0;s:14:\"Less-Than Sign\";i:1;s:10:\"arithmetic\";i:2;s:7:\"compare\";i:3;s:4:\"math\";i:4;s:9:\"less-than\";i:5;s:9:\"less than\";}}s:22:\"fas fa-less-than-equal\";a:2:{s:5:\"label\";s:15:\"Less Than Equal\";s:6:\"search\";a:5:{i:0;s:10:\"arithmetic\";i:1;s:7:\"compare\";i:2;s:4:\"math\";i:3;s:15:\"less-than-equal\";i:4;s:15:\"less than equal\";}}s:17:\"fab fa-letterboxd\";a:2:{s:5:\"label\";s:10:\"Letterboxd\";s:6:\"search\";a:1:{i:0;s:10:\"letterboxd\";}}s:16:\"fas fa-life-ring\";a:2:{s:5:\"label\";s:17:\"Life Ring (solid)\";s:6:\"search\";a:7:{i:0;s:11:\"coast guard\";i:1;s:4:\"help\";i:2;s:9:\"overboard\";i:3;s:4:\"save\";i:4;s:7:\"support\";i:5;s:9:\"life-ring\";i:6;s:9:\"life ring\";}}s:16:\"far fa-life-ring\";a:2:{s:5:\"label\";s:19:\"Life Ring (regular)\";s:6:\"search\";a:7:{i:0;s:11:\"coast guard\";i:1;s:4:\"help\";i:2;s:9:\"overboard\";i:3;s:4:\"save\";i:4;s:7:\"support\";i:5;s:9:\"life-ring\";i:6;s:9:\"life ring\";}}s:16:\"fas fa-lightbulb\";a:2:{s:5:\"label\";s:17:\"Lightbulb (solid)\";s:6:\"search\";a:16:{i:0;s:7:\" comic\";i:1;s:10:\" electric\";i:2;s:6:\" idea\";i:3;s:12:\" innovation\";i:4;s:13:\" inspiration\";i:5;s:7:\" light\";i:6;s:12:\" light bulb\";i:7;s:5:\" bulb\";i:8;s:4:\"bulb\";i:9;s:5:\"comic\";i:10;s:8:\"electric\";i:11;s:6:\"energy\";i:12;s:4:\"idea\";i:13;s:11:\"inspiration\";i:14;s:10:\"mechanical\";i:15;s:9:\"lightbulb\";}}s:16:\"far fa-lightbulb\";a:2:{s:5:\"label\";s:19:\"Lightbulb (regular)\";s:6:\"search\";a:16:{i:0;s:7:\" comic\";i:1;s:10:\" electric\";i:2;s:6:\" idea\";i:3;s:12:\" innovation\";i:4;s:13:\" inspiration\";i:5;s:7:\" light\";i:6;s:12:\" light bulb\";i:7;s:5:\" bulb\";i:8;s:4:\"bulb\";i:9;s:5:\"comic\";i:10;s:8:\"electric\";i:11;s:6:\"energy\";i:12;s:4:\"idea\";i:13;s:11:\"inspiration\";i:14;s:10:\"mechanical\";i:15;s:9:\"lightbulb\";}}s:11:\"fab fa-line\";a:2:{s:5:\"label\";s:4:\"Line\";s:6:\"search\";a:1:{i:0;s:4:\"line\";}}s:20:\"fas fa-lines-leaning\";a:2:{s:5:\"label\";s:13:\"Lines Leaning\";s:6:\"search\";a:8:{i:0;s:6:\"canted\";i:1;s:6:\"domino\";i:2;s:7:\"falling\";i:3;s:10:\"resilience\";i:4;s:9:\"resilient\";i:5;s:6:\"tipped\";i:6;s:13:\"lines-leaning\";i:7;s:13:\"lines leaning\";}}s:11:\"fas fa-link\";a:2:{s:5:\"label\";s:4:\"Link\";s:6:\"search\";a:6:{i:0;s:6:\"attach\";i:1;s:10:\"attachment\";i:2;s:5:\"chain\";i:3;s:7:\"connect\";i:4;s:3:\"lin\";i:5;s:4:\"link\";}}s:17:\"fas fa-link-slash\";a:2:{s:5:\"label\";s:10:\"Link Slash\";s:6:\"search\";a:8:{i:0;s:10:\"attachment\";i:1;s:5:\"chain\";i:2;s:12:\"chain-broken\";i:3;s:8:\"disabled\";i:4;s:10:\"disconnect\";i:5;s:6:\"remove\";i:6;s:10:\"link-slash\";i:7;s:10:\"link slash\";}}s:15:\"fab fa-linkedin\";a:2:{s:5:\"label\";s:8:\"LinkedIn\";s:6:\"search\";a:3:{i:0;s:15:\"linkedin-square\";i:1;s:6:\"linkin\";i:2;s:8:\"linkedin\";}}s:18:\"fab fa-linkedin-in\";a:2:{s:5:\"label\";s:11:\"LinkedIn In\";s:6:\"search\";a:4:{i:0;s:8:\"linkedin\";i:1;s:6:\"linkin\";i:2;s:11:\"linkedin-in\";i:3;s:11:\"linkedin in\";}}s:13:\"fab fa-linode\";a:2:{s:5:\"label\";s:6:\"Linode\";s:6:\"search\";a:1:{i:0;s:6:\"linode\";}}s:12:\"fab fa-linux\";a:2:{s:5:\"label\";s:5:\"Linux\";s:6:\"search\";a:2:{i:0;s:3:\"tux\";i:1;s:5:\"linux\";}}s:16:\"fas fa-lira-sign\";a:2:{s:5:\"label\";s:9:\"Lira Sign\";s:6:\"search\";a:4:{i:0;s:9:\"Lira Sign\";i:1;s:8:\"currency\";i:2;s:9:\"lira-sign\";i:3;s:9:\"lira sign\";}}s:11:\"fas fa-list\";a:2:{s:5:\"label\";s:4:\"List\";s:6:\"search\";a:12:{i:0;s:6:\"bullet\";i:1;s:8:\"category\";i:2;s:10:\"cheatsheet\";i:3;s:9:\"checklist\";i:4;s:9:\"completed\";i:5;s:4:\"done\";i:6;s:8:\"finished\";i:7;s:2:\"ol\";i:8;s:7:\"summary\";i:9;s:4:\"todo\";i:10;s:2:\"ul\";i:11;s:4:\"list\";}}s:17:\"fas fa-list-check\";a:2:{s:5:\"label\";s:10:\"List Check\";s:6:\"search\";a:16:{i:0;s:6:\"bullet\";i:1;s:10:\"cheatsheet\";i:2;s:9:\"checklist\";i:3;s:11:\"downloading\";i:4;s:9:\"downloads\";i:5;s:6:\"enable\";i:6;s:7:\"loading\";i:7;s:8:\"progress\";i:8;s:18:\"project management\";i:9;s:8:\"settings\";i:10;s:7:\"summary\";i:11;s:5:\"to do\";i:12;s:8:\"validate\";i:13;s:7:\"working\";i:14;s:10:\"list-check\";i:15;s:10:\"list check\";}}s:14:\"fas fa-list-ol\";a:2:{s:5:\"label\";s:7:\"List Ol\";s:6:\"search\";a:12:{i:0;s:10:\"cheatsheet\";i:1;s:9:\"checklist\";i:2;s:9:\"completed\";i:3;s:4:\"done\";i:4;s:8:\"finished\";i:5;s:7:\"numbers\";i:6;s:2:\"ol\";i:7;s:7:\"summary\";i:8;s:4:\"todo\";i:9;s:2:\"ul\";i:10;s:7:\"list-ol\";i:11;s:7:\"list ol\";}}s:14:\"fas fa-list-ul\";a:2:{s:5:\"label\";s:7:\"List Ul\";s:6:\"search\";a:12:{i:0;s:6:\"bullet\";i:1;s:10:\"cheatsheet\";i:2;s:9:\"checklist\";i:3;s:9:\"completed\";i:4;s:4:\"done\";i:5;s:8:\"finished\";i:6;s:2:\"ol\";i:7;s:7:\"summary\";i:8;s:4:\"todo\";i:9;s:2:\"ul\";i:10;s:7:\"list-ul\";i:11;s:7:\"list ul\";}}s:20:\"fas fa-litecoin-sign\";a:2:{s:5:\"label\";s:13:\"Litecoin Sign\";s:6:\"search\";a:3:{i:0;s:8:\"currency\";i:1;s:13:\"litecoin-sign\";i:2;s:13:\"litecoin sign\";}}s:21:\"fas fa-location-arrow\";a:2:{s:5:\"label\";s:14:\"Location Arrow\";s:6:\"search\";a:10:{i:0;s:7:\"address\";i:1;s:7:\"compass\";i:2;s:10:\"coordinate\";i:3;s:9:\"direction\";i:4;s:3:\"gps\";i:5;s:3:\"map\";i:6;s:10:\"navigation\";i:7;s:5:\"place\";i:8;s:14:\"location-arrow\";i:9;s:14:\"location arrow\";}}s:26:\"fas fa-location-crosshairs\";a:2:{s:5:\"label\";s:19:\"Location Crosshairs\";s:6:\"search\";a:11:{i:0;s:7:\"address\";i:1;s:10:\"coordinate\";i:2;s:9:\"direction\";i:3;s:3:\"gps\";i:4;s:8:\"location\";i:5;s:3:\"map\";i:6;s:10:\"navigation\";i:7;s:5:\"place\";i:8;s:5:\"where\";i:9;s:19:\"location-crosshairs\";i:10;s:19:\"location crosshairs\";}}s:19:\"fas fa-location-dot\";a:2:{s:5:\"label\";s:12:\"Location Dot\";s:6:\"search\";a:17:{i:0;s:7:\"address\";i:1;s:11:\"coordinates\";i:2;s:11:\"destination\";i:3;s:3:\"gps\";i:4;s:8:\"localize\";i:5;s:8:\"location\";i:6;s:3:\"map\";i:7;s:10:\"navigation\";i:8;s:5:\"paper\";i:9;s:3:\"pin\";i:10;s:5:\"place\";i:11;s:17:\"point of interest\";i:12;s:8:\"position\";i:13;s:5:\"route\";i:14;s:6:\"travel\";i:15;s:12:\"location-dot\";i:16;s:12:\"location dot\";}}s:19:\"fas fa-location-pin\";a:2:{s:5:\"label\";s:12:\"Location Pin\";s:6:\"search\";a:17:{i:0;s:7:\"address\";i:1;s:11:\"coordinates\";i:2;s:11:\"destination\";i:3;s:3:\"gps\";i:4;s:8:\"localize\";i:5;s:8:\"location\";i:6;s:3:\"map\";i:7;s:10:\"navigation\";i:8;s:5:\"paper\";i:9;s:3:\"pin\";i:10;s:5:\"place\";i:11;s:17:\"point of interest\";i:12;s:8:\"position\";i:13;s:5:\"route\";i:14;s:6:\"travel\";i:15;s:12:\"location-pin\";i:16;s:12:\"location pin\";}}s:24:\"fas fa-location-pin-lock\";a:2:{s:5:\"label\";s:17:\"Location Pin Lock\";s:6:\"search\";a:8:{i:0;s:6:\"closed\";i:1;s:8:\"lockdown\";i:2;s:3:\"map\";i:3;s:7:\"padlock\";i:4;s:7:\"privacy\";i:5;s:10:\"quarantine\";i:6;s:17:\"location-pin-lock\";i:7;s:17:\"location pin lock\";}}s:11:\"fas fa-lock\";a:2:{s:5:\"label\";s:4:\"Lock\";s:6:\"search\";a:11:{i:0;s:5:\"admin\";i:1;s:6:\"closed\";i:2;s:4:\"lock\";i:3;s:6:\"locked\";i:4;s:4:\"open\";i:5;s:7:\"padlock\";i:6;s:8:\"password\";i:7;s:7:\"privacy\";i:8;s:7:\"private\";i:9;s:7:\"protect\";i:10;s:8:\"security\";}}s:16:\"fas fa-lock-open\";a:2:{s:5:\"label\";s:9:\"Lock Open\";s:6:\"search\";a:12:{i:0;s:5:\"admin\";i:1;s:4:\"lock\";i:2;s:4:\"open\";i:3;s:7:\"padlock\";i:4;s:8:\"password\";i:5;s:7:\"privacy\";i:6;s:7:\"private\";i:7;s:7:\"protect\";i:8;s:8:\"security\";i:9;s:6:\"unlock\";i:10;s:9:\"lock-open\";i:11;s:9:\"lock open\";}}s:13:\"fas fa-locust\";a:2:{s:5:\"label\";s:6:\"Locust\";s:6:\"search\";a:5:{i:0;s:5:\"horde\";i:1;s:11:\"infestation\";i:2;s:6:\"locust\";i:3;s:6:\"plague\";i:4;s:5:\"swarm\";}}s:12:\"fas fa-lungs\";a:2:{s:5:\"label\";s:5:\"Lungs\";s:6:\"search\";a:9:{i:0;s:3:\"air\";i:1;s:6:\"breath\";i:2;s:8:\"covid-19\";i:3;s:10:\"exhalation\";i:4;s:10:\"inhalation\";i:5;s:5:\"lungs\";i:6;s:5:\"organ\";i:7;s:11:\"respiration\";i:8;s:11:\"respiratory\";}}s:18:\"fas fa-lungs-virus\";a:2:{s:5:\"label\";s:11:\"Lungs Virus\";s:6:\"search\";a:10:{i:0;s:6:\"breath\";i:1;s:11:\"coronavirus\";i:2;s:8:\"covid-19\";i:3;s:3:\"flu\";i:4;s:9:\"infection\";i:5;s:8:\"pandemic\";i:6;s:11:\"respiratory\";i:7;s:4:\"sick\";i:8;s:11:\"lungs-virus\";i:9;s:11:\"lungs virus\";}}s:11:\"fab fa-lyft\";a:2:{s:5:\"label\";s:4:\"lyft\";s:6:\"search\";a:1:{i:0;s:4:\"lyft\";}}s:8:\"fas fa-m\";a:2:{s:5:\"label\";s:1:\"M\";s:6:\"search\";a:4:{i:0;s:22:\"Latin Capital Letter M\";i:1;s:20:\"Latin Small Letter M\";i:2;s:6:\"letter\";i:3;s:1:\"m\";}}s:14:\"fab fa-magento\";a:2:{s:5:\"label\";s:7:\"Magento\";s:6:\"search\";a:1:{i:0;s:7:\"magento\";}}s:13:\"fas fa-magnet\";a:2:{s:5:\"label\";s:6:\"Magnet\";s:6:\"search\";a:7:{i:0;s:7:\"Attract\";i:1;s:10:\"attraction\";i:2;s:9:\"horseshoe\";i:3;s:9:\"lodestone\";i:4;s:6:\"magnet\";i:5;s:8:\"magnetic\";i:6;s:4:\"tool\";}}s:23:\"fas fa-magnifying-glass\";a:2:{s:5:\"label\";s:16:\"Magnifying Glass\";s:6:\"search\";a:16:{i:0;s:6:\"bigger\";i:1;s:7:\"enlarge\";i:2;s:9:\"equipment\";i:3;s:4:\"find\";i:4;s:5:\"glass\";i:5;s:10:\"inspection\";i:6;s:9:\"magnifier\";i:7;s:7:\"magnify\";i:8;s:10:\"magnifying\";i:9;s:28:\"magnifying glass tilted left\";i:10;s:7:\"preview\";i:11;s:6:\"search\";i:12;s:4:\"tool\";i:13;s:4:\"zoom\";i:14;s:16:\"magnifying-glass\";i:15;s:16:\"magnifying glass\";}}s:35:\"fas fa-magnifying-glass-arrow-right\";a:2:{s:5:\"label\";s:28:\"Magnifying Glass Arrow Right\";s:6:\"search\";a:6:{i:0;s:4:\"find\";i:1;s:9:\"magnifier\";i:2;s:4:\"next\";i:3;s:6:\"search\";i:4;s:28:\"magnifying-glass-arrow-right\";i:5;s:28:\"magnifying glass arrow right\";}}s:29:\"fas fa-magnifying-glass-chart\";a:2:{s:5:\"label\";s:22:\"Magnifying Glass Chart\";s:6:\"search\";a:10:{i:0;s:5:\" data\";i:1;s:6:\" graph\";i:2;s:13:\" intelligence\";i:3;s:8:\"analysis\";i:4;s:5:\"chart\";i:5;s:9:\"magnifier\";i:6;s:6:\"market\";i:7;s:7:\"revenue\";i:8;s:22:\"magnifying-glass-chart\";i:9;s:22:\"magnifying glass chart\";}}s:30:\"fas fa-magnifying-glass-dollar\";a:2:{s:5:\"label\";s:23:\"Magnifying Glass Dollar\";s:6:\"search\";a:10:{i:0;s:6:\"bigger\";i:1;s:7:\"enlarge\";i:2;s:4:\"find\";i:3;s:9:\"magnifier\";i:4;s:7:\"magnify\";i:5;s:5:\"money\";i:6;s:7:\"preview\";i:7;s:4:\"zoom\";i:8;s:23:\"magnifying-glass-dollar\";i:9;s:23:\"magnifying glass dollar\";}}s:32:\"fas fa-magnifying-glass-location\";a:2:{s:5:\"label\";s:25:\"Magnifying Glass Location\";s:6:\"search\";a:9:{i:0;s:6:\"bigger\";i:1;s:7:\"enlarge\";i:2;s:4:\"find\";i:3;s:9:\"magnifier\";i:4;s:7:\"magnify\";i:5;s:7:\"preview\";i:6;s:4:\"zoom\";i:7;s:25:\"magnifying-glass-location\";i:8;s:25:\"magnifying glass location\";}}s:29:\"fas fa-magnifying-glass-minus\";a:2:{s:5:\"label\";s:22:\"Magnifying Glass Minus\";s:6:\"search\";a:8:{i:0;s:9:\"magnifier\";i:1;s:6:\"minify\";i:2;s:8:\"negative\";i:3;s:7:\"smaller\";i:4;s:4:\"zoom\";i:5;s:8:\"zoom out\";i:6;s:22:\"magnifying-glass-minus\";i:7;s:22:\"magnifying glass minus\";}}s:28:\"fas fa-magnifying-glass-plus\";a:2:{s:5:\"label\";s:21:\"Magnifying Glass Plus\";s:6:\"search\";a:9:{i:0;s:6:\"bigger\";i:1;s:7:\"enlarge\";i:2;s:9:\"magnifier\";i:3;s:7:\"magnify\";i:4;s:8:\"positive\";i:5;s:4:\"zoom\";i:6;s:7:\"zoom in\";i:7;s:21:\"magnifying-glass-plus\";i:8;s:21:\"magnifying glass plus\";}}s:16:\"fab fa-mailchimp\";a:2:{s:5:\"label\";s:9:\"Mailchimp\";s:6:\"search\";a:1:{i:0;s:9:\"mailchimp\";}}s:17:\"fas fa-manat-sign\";a:2:{s:5:\"label\";s:10:\"Manat Sign\";s:6:\"search\";a:4:{i:0;s:10:\"Manat Sign\";i:1;s:8:\"currency\";i:2;s:10:\"manat-sign\";i:3;s:10:\"manat sign\";}}s:18:\"fab fa-mandalorian\";a:2:{s:5:\"label\";s:11:\"Mandalorian\";s:6:\"search\";a:1:{i:0;s:11:\"mandalorian\";}}s:10:\"fas fa-map\";a:2:{s:5:\"label\";s:11:\"Map (solid)\";s:6:\"search\";a:17:{i:0;s:7:\"address\";i:1;s:11:\"coordinates\";i:2;s:11:\"destination\";i:3;s:3:\"gps\";i:4;s:8:\"localize\";i:5;s:8:\"location\";i:6;s:3:\"map\";i:7;s:10:\"navigation\";i:8;s:5:\"paper\";i:9;s:3:\"pin\";i:10;s:5:\"place\";i:11;s:17:\"point of interest\";i:12;s:8:\"position\";i:13;s:5:\"route\";i:14;s:6:\"travel\";i:15;s:5:\"world\";i:16;s:9:\"world map\";}}s:10:\"far fa-map\";a:2:{s:5:\"label\";s:13:\"Map (regular)\";s:6:\"search\";a:17:{i:0;s:7:\"address\";i:1;s:11:\"coordinates\";i:2;s:11:\"destination\";i:3;s:3:\"gps\";i:4;s:8:\"localize\";i:5;s:8:\"location\";i:6;s:3:\"map\";i:7;s:10:\"navigation\";i:8;s:5:\"paper\";i:9;s:3:\"pin\";i:10;s:5:\"place\";i:11;s:17:\"point of interest\";i:12;s:8:\"position\";i:13;s:5:\"route\";i:14;s:6:\"travel\";i:15;s:5:\"world\";i:16;s:9:\"world map\";}}s:19:\"fas fa-map-location\";a:2:{s:5:\"label\";s:12:\"Map Location\";s:6:\"search\";a:17:{i:0;s:7:\"address\";i:1;s:11:\"coordinates\";i:2;s:11:\"destination\";i:3;s:3:\"gps\";i:4;s:8:\"localize\";i:5;s:8:\"location\";i:6;s:3:\"map\";i:7;s:10:\"navigation\";i:8;s:5:\"paper\";i:9;s:3:\"pin\";i:10;s:5:\"place\";i:11;s:17:\"point of interest\";i:12;s:8:\"position\";i:13;s:5:\"route\";i:14;s:6:\"travel\";i:15;s:12:\"map-location\";i:16;s:12:\"map location\";}}s:23:\"fas fa-map-location-dot\";a:2:{s:5:\"label\";s:16:\"Map Location Dot\";s:6:\"search\";a:17:{i:0;s:7:\"address\";i:1;s:11:\"coordinates\";i:2;s:11:\"destination\";i:3;s:3:\"gps\";i:4;s:8:\"localize\";i:5;s:8:\"location\";i:6;s:3:\"map\";i:7;s:10:\"navigation\";i:8;s:5:\"paper\";i:9;s:3:\"pin\";i:10;s:5:\"place\";i:11;s:17:\"point of interest\";i:12;s:8:\"position\";i:13;s:5:\"route\";i:14;s:6:\"travel\";i:15;s:16:\"map-location-dot\";i:16;s:16:\"map location dot\";}}s:14:\"fas fa-map-pin\";a:2:{s:5:\"label\";s:7:\"Map Pin\";s:6:\"search\";a:18:{i:0;s:7:\"address\";i:1;s:5:\"agree\";i:2;s:11:\"coordinates\";i:3;s:11:\"destination\";i:4;s:3:\"gps\";i:5;s:8:\"localize\";i:6;s:8:\"location\";i:7;s:3:\"map\";i:8;s:6:\"marker\";i:9;s:10:\"navigation\";i:10;s:3:\"pin\";i:11;s:5:\"place\";i:12;s:8:\"position\";i:13;s:7:\"pushpin\";i:14;s:13:\"round pushpin\";i:15;s:6:\"travel\";i:16;s:7:\"map-pin\";i:17;s:7:\"map pin\";}}s:15:\"fab fa-markdown\";a:2:{s:5:\"label\";s:8:\"Markdown\";s:6:\"search\";a:1:{i:0;s:8:\"markdown\";}}s:13:\"fas fa-marker\";a:2:{s:5:\"label\";s:6:\"Marker\";s:6:\"search\";a:7:{i:0;s:6:\"design\";i:1;s:4:\"edit\";i:2;s:6:\"modify\";i:3;s:7:\"sharpie\";i:4;s:6:\"update\";i:5;s:5:\"write\";i:6;s:6:\"marker\";}}s:11:\"fas fa-mars\";a:2:{s:5:\"label\";s:4:\"Mars\";s:6:\"search\";a:5:{i:0;s:6:\"gender\";i:1;s:4:\"male\";i:2;s:9:\"male sign\";i:3;s:3:\"man\";i:4;s:4:\"mars\";}}s:21:\"fas fa-mars-and-venus\";a:2:{s:5:\"label\";s:14:\"Mars And Venus\";s:6:\"search\";a:8:{i:0;s:20:\"Male and Female Sign\";i:1;s:6:\"female\";i:2;s:6:\"gender\";i:3;s:8:\"intersex\";i:4;s:4:\"male\";i:5;s:11:\"transgender\";i:6;s:14:\"mars-and-venus\";i:7;s:14:\"mars and venus\";}}s:27:\"fas fa-mars-and-venus-burst\";a:2:{s:5:\"label\";s:20:\"Mars And Venus Burst\";s:6:\"search\";a:5:{i:0;s:6:\"gender\";i:1;s:3:\"uer\";i:2;s:8:\"violence\";i:3;s:20:\"mars-and-venus-burst\";i:4;s:20:\"mars and venus burst\";}}s:18:\"fas fa-mars-double\";a:2:{s:5:\"label\";s:11:\"Mars Double\";s:6:\"search\";a:7:{i:0;s:17:\"Doubled Male Sign\";i:1;s:3:\"gay\";i:2;s:6:\"gender\";i:3;s:4:\"male\";i:4;s:3:\"men\";i:5;s:11:\"mars-double\";i:6;s:11:\"mars double\";}}s:18:\"fas fa-mars-stroke\";a:2:{s:5:\"label\";s:11:\"Mars Stroke\";s:6:\"search\";a:5:{i:0;s:21:\"Male with Stroke Sign\";i:1;s:6:\"gender\";i:2;s:11:\"transgender\";i:3;s:11:\"mars-stroke\";i:4;s:11:\"mars stroke\";}}s:24:\"fas fa-mars-stroke-right\";a:2:{s:5:\"label\";s:17:\"Mars Stroke Right\";s:6:\"search\";a:4:{i:0;s:32:\"Horizontal Male with Stroke Sign\";i:1;s:6:\"gender\";i:2;s:17:\"mars-stroke-right\";i:3;s:17:\"mars stroke right\";}}s:21:\"fas fa-mars-stroke-up\";a:2:{s:5:\"label\";s:14:\"Mars Stroke Up\";s:6:\"search\";a:4:{i:0;s:30:\"Vertical Male with Stroke Sign\";i:1;s:6:\"gender\";i:2;s:14:\"mars-stroke-up\";i:3;s:14:\"mars stroke up\";}}s:20:\"fas fa-martini-glass\";a:2:{s:5:\"label\";s:13:\"Martini Glass\";s:6:\"search\";a:10:{i:0;s:7:\"alcohol\";i:1;s:3:\"bar\";i:2;s:8:\"beverage\";i:3;s:8:\"cocktail\";i:4;s:14:\"cocktail glass\";i:5;s:5:\"drink\";i:6;s:5:\"glass\";i:7;s:6:\"liquor\";i:8;s:13:\"martini-glass\";i:9;s:13:\"martini glass\";}}s:27:\"fas fa-martini-glass-citrus\";a:2:{s:5:\"label\";s:20:\"Martini Glass Citrus\";s:6:\"search\";a:10:{i:0;s:7:\"alcohol\";i:1;s:8:\"beverage\";i:2;s:5:\"drink\";i:3;s:3:\"gin\";i:4;s:5:\"glass\";i:5;s:9:\"margarita\";i:6;s:7:\"martini\";i:7;s:5:\"vodka\";i:8;s:20:\"martini-glass-citrus\";i:9;s:20:\"martini glass citrus\";}}s:26:\"fas fa-martini-glass-empty\";a:2:{s:5:\"label\";s:19:\"Martini Glass Empty\";s:6:\"search\";a:7:{i:0;s:7:\"alcohol\";i:1;s:3:\"bar\";i:2;s:8:\"beverage\";i:3;s:5:\"drink\";i:4;s:6:\"liquor\";i:5;s:19:\"martini-glass-empty\";i:6;s:19:\"martini glass empty\";}}s:11:\"fas fa-mask\";a:2:{s:5:\"label\";s:4:\"Mask\";s:6:\"search\";a:7:{i:0;s:9:\"carnivale\";i:1;s:7:\"costume\";i:2;s:8:\"disguise\";i:3;s:9:\"halloween\";i:4;s:6:\"secret\";i:5;s:10:\"super hero\";i:6;s:4:\"mask\";}}s:16:\"fas fa-mask-face\";a:2:{s:5:\"label\";s:9:\"Mask Face\";s:6:\"search\";a:11:{i:0;s:6:\"breath\";i:1;s:11:\"coronavirus\";i:2;s:8:\"covid-19\";i:3;s:6:\"filter\";i:4;s:3:\"flu\";i:5;s:9:\"infection\";i:6;s:8:\"pandemic\";i:7;s:10:\"respirator\";i:8;s:5:\"virus\";i:9;s:9:\"mask-face\";i:10;s:9:\"mask face\";}}s:22:\"fas fa-mask-ventilator\";a:2:{s:5:\"label\";s:15:\"Mask Ventilator\";s:6:\"search\";a:8:{i:0;s:6:\"breath\";i:1;s:3:\"gas\";i:2;s:4:\"mask\";i:3;s:6:\"oxygen\";i:4;s:10:\"respirator\";i:5;s:10:\"ventilator\";i:6;s:15:\"mask-ventilator\";i:7;s:15:\"mask ventilator\";}}s:20:\"fas fa-masks-theater\";a:2:{s:5:\"label\";s:13:\"Masks Theater\";s:6:\"search\";a:11:{i:0;s:3:\"art\";i:1;s:6:\"comedy\";i:2;s:4:\"mask\";i:3;s:7:\"perform\";i:4;s:10:\"performing\";i:5;s:15:\"performing arts\";i:6;s:7:\"theater\";i:7;s:7:\"theatre\";i:8;s:7:\"tragedy\";i:9;s:13:\"masks-theater\";i:10;s:13:\"masks theater\";}}s:15:\"fab fa-mastodon\";a:2:{s:5:\"label\";s:8:\"Mastodon\";s:6:\"search\";a:1:{i:0;s:8:\"mastodon\";}}s:22:\"fas fa-mattress-pillow\";a:2:{s:5:\"label\";s:15:\"Mattress Pillow\";s:6:\"search\";a:7:{i:0;s:12:\"air mattress\";i:1;s:8:\"mattress\";i:2;s:6:\"pillow\";i:3;s:4:\"rest\";i:4;s:5:\"sleep\";i:5;s:15:\"mattress-pillow\";i:6;s:15:\"mattress pillow\";}}s:13:\"fab fa-maxcdn\";a:2:{s:5:\"label\";s:6:\"MaxCDN\";s:6:\"search\";a:1:{i:0;s:6:\"maxcdn\";}}s:15:\"fas fa-maximize\";a:2:{s:5:\"label\";s:8:\"Maximize\";s:6:\"search\";a:11:{i:0;s:10:\" maximize\";i:1;s:8:\" resize\";i:2;s:7:\" scale\";i:3;s:7:\" arrows\";i:4;s:7:\" bigger\";i:5;s:8:\" enlarge\";i:6;s:11:\" fullscreen\";i:7;s:7:\" resize\";i:8;s:5:\" size\";i:9;s:6:\"expand\";i:10;s:8:\"maximize\";}}s:10:\"fab fa-mdb\";a:2:{s:5:\"label\";s:29:\"Material Design for Bootstrap\";s:6:\"search\";a:2:{i:0;s:3:\"mdb\";i:1;s:29:\"material design for bootstrap\";}}s:12:\"fas fa-medal\";a:2:{s:5:\"label\";s:5:\"Medal\";s:6:\"search\";a:9:{i:0;s:5:\"award\";i:1;s:9:\"guarantee\";i:2;s:5:\"medal\";i:3;s:7:\"quality\";i:4;s:6:\"ribbon\";i:5;s:12:\"sports medal\";i:6;s:4:\"star\";i:7;s:6:\"trophy\";i:8;s:8:\"warranty\";}}s:14:\"fab fa-medapps\";a:2:{s:5:\"label\";s:7:\"MedApps\";s:6:\"search\";a:1:{i:0;s:7:\"medapps\";}}s:13:\"fab fa-medium\";a:2:{s:5:\"label\";s:6:\"Medium\";s:6:\"search\";a:1:{i:0;s:6:\"medium\";}}s:12:\"fab fa-medrt\";a:2:{s:5:\"label\";s:3:\"MRT\";s:6:\"search\";a:2:{i:0;s:5:\"medrt\";i:1;s:3:\"mrt\";}}s:13:\"fab fa-meetup\";a:2:{s:5:\"label\";s:6:\"Meetup\";s:6:\"search\";a:1:{i:0;s:6:\"meetup\";}}s:15:\"fab fa-megaport\";a:2:{s:5:\"label\";s:8:\"Megaport\";s:6:\"search\";a:1:{i:0;s:8:\"megaport\";}}s:13:\"fas fa-memory\";a:2:{s:5:\"label\";s:6:\"Memory\";s:6:\"search\";a:6:{i:0;s:4:\"DIMM\";i:1;s:3:\"RAM\";i:2;s:8:\"hardware\";i:3;s:7:\"storage\";i:4;s:10:\"technology\";i:5;s:6:\"memory\";}}s:15:\"fab fa-mendeley\";a:2:{s:5:\"label\";s:8:\"Mendeley\";s:6:\"search\";a:1:{i:0;s:8:\"mendeley\";}}s:14:\"fas fa-menorah\";a:2:{s:5:\"label\";s:7:\"Menorah\";s:6:\"search\";a:6:{i:0;s:6:\"candle\";i:1;s:8:\"hanukkah\";i:2;s:6:\"jewish\";i:3;s:7:\"judaism\";i:4;s:5:\"light\";i:5;s:7:\"menorah\";}}s:14:\"fas fa-mercury\";a:2:{s:5:\"label\";s:7:\"Mercury\";s:6:\"search\";a:5:{i:0;s:7:\"Mercury\";i:1;s:6:\"gender\";i:2;s:6:\"hybrid\";i:3;s:11:\"transgender\";i:4;s:7:\"mercury\";}}s:14:\"fas fa-message\";a:2:{s:5:\"label\";s:15:\"Message (solid)\";s:6:\"search\";a:16:{i:0;s:13:\" conversation\";i:1;s:11:\" discussion\";i:2;s:8:\" talking\";i:3;s:6:\"answer\";i:4;s:6:\"bubble\";i:5;s:4:\"chat\";i:6;s:10:\"commenting\";i:7;s:12:\"conversation\";i:8;s:8:\"feedback\";i:9;s:7:\"message\";i:10;s:4:\"note\";i:11;s:12:\"notification\";i:12;s:3:\"sms\";i:13;s:6:\"speech\";i:14;s:4:\"talk\";i:15;s:7:\"texting\";}}s:14:\"far fa-message\";a:2:{s:5:\"label\";s:17:\"Message (regular)\";s:6:\"search\";a:16:{i:0;s:13:\" conversation\";i:1;s:11:\" discussion\";i:2;s:8:\" talking\";i:3;s:6:\"answer\";i:4;s:6:\"bubble\";i:5;s:4:\"chat\";i:6;s:10:\"commenting\";i:7;s:12:\"conversation\";i:8;s:8:\"feedback\";i:9;s:7:\"message\";i:10;s:4:\"note\";i:11;s:12:\"notification\";i:12;s:3:\"sms\";i:13;s:6:\"speech\";i:14;s:4:\"talk\";i:15;s:7:\"texting\";}}s:11:\"fab fa-meta\";a:2:{s:5:\"label\";s:4:\"Meta\";s:6:\"search\";a:1:{i:0;s:4:\"meta\";}}s:13:\"fas fa-meteor\";a:2:{s:5:\"label\";s:6:\"Meteor\";s:6:\"search\";a:6:{i:0;s:10:\"armageddon\";i:1;s:8:\"asteroid\";i:2;s:5:\"comet\";i:3;s:13:\"shooting star\";i:4;s:5:\"space\";i:5;s:6:\"meteor\";}}s:16:\"fab fa-microblog\";a:2:{s:5:\"label\";s:10:\"Micro.blog\";s:6:\"search\";a:2:{i:0;s:9:\"microblog\";i:1;s:10:\"micro.blog\";}}s:16:\"fas fa-microchip\";a:2:{s:5:\"label\";s:9:\"Microchip\";s:6:\"search\";a:5:{i:0;s:3:\"cpu\";i:1;s:8:\"hardware\";i:2;s:9:\"processor\";i:3;s:10:\"technology\";i:4;s:9:\"microchip\";}}s:17:\"fas fa-microphone\";a:2:{s:5:\"label\";s:10:\"Microphone\";s:6:\"search\";a:11:{i:0;s:7:\"address\";i:1;s:5:\"audio\";i:2;s:11:\"information\";i:3;s:7:\"podcast\";i:4;s:6:\"public\";i:5;s:6:\"record\";i:6;s:4:\"sing\";i:7;s:5:\"sound\";i:8;s:7:\"talking\";i:9;s:5:\"voice\";i:10;s:10:\"microphone\";}}s:23:\"fas fa-microphone-lines\";a:2:{s:5:\"label\";s:16:\"Microphone Lines\";s:6:\"search\";a:14:{i:0;s:5:\"audio\";i:1;s:3:\"mic\";i:2;s:10:\"microphone\";i:3;s:5:\"music\";i:4;s:7:\"podcast\";i:5;s:6:\"record\";i:6;s:4:\"sing\";i:7;s:5:\"sound\";i:8;s:6:\"studio\";i:9;s:17:\"studio microphone\";i:10;s:7:\"talking\";i:11;s:5:\"voice\";i:12;s:16:\"microphone-lines\";i:13;s:16:\"microphone lines\";}}s:29:\"fas fa-microphone-lines-slash\";a:2:{s:5:\"label\";s:22:\"Microphone Lines Slash\";s:6:\"search\";a:12:{i:0;s:5:\"audio\";i:1;s:7:\"disable\";i:2;s:8:\"disabled\";i:3;s:10:\"disconnect\";i:5;s:4:\"mute\";i:6;s:7:\"podcast\";i:7;s:6:\"record\";i:8;s:4:\"sing\";i:9;s:5:\"sound\";i:10;s:5:\"voice\";i:11;s:22:\"microphone-lines-slash\";i:12;s:22:\"microphone lines slash\";}}s:23:\"fas fa-microphone-slash\";a:2:{s:5:\"label\";s:16:\"Microphone Slash\";s:6:\"search\";a:11:{i:0;s:5:\"audio\";i:1;s:7:\"disable\";i:2;s:8:\"disabled\";i:3;s:4:\"mute\";i:4;s:7:\"podcast\";i:5;s:6:\"record\";i:6;s:4:\"sing\";i:7;s:5:\"sound\";i:8;s:5:\"voice\";i:9;s:16:\"microphone-slash\";i:10;s:16:\"microphone slash\";}}s:17:\"fas fa-microscope\";a:2:{s:5:\"label\";s:10:\"Microscope\";s:6:\"search\";a:10:{i:0;s:8:\"covid-19\";i:1;s:8:\"electron\";i:2;s:9:\"knowledge\";i:3;s:4:\"lens\";i:4;s:10:\"microscope\";i:5;s:6:\"optics\";i:6;s:7:\"science\";i:7;s:6:\"shrink\";i:8;s:7:\"testing\";i:9;s:4:\"tool\";}}s:16:\"fab fa-microsoft\";a:2:{s:5:\"label\";s:9:\"Microsoft\";s:6:\"search\";a:1:{i:0;s:9:\"microsoft\";}}s:16:\"fas fa-mill-sign\";a:2:{s:5:\"label\";s:9:\"Mill Sign\";s:6:\"search\";a:4:{i:0;s:9:\"Mill Sign\";i:1;s:8:\"currency\";i:2;s:9:\"mill-sign\";i:3;s:9:\"mill sign\";}}s:15:\"fas fa-minimize\";a:2:{s:5:\"label\";s:8:\"Minimize\";s:6:\"search\";a:7:{i:0;s:8:\"collapse\";i:1;s:10:\"fullscreen\";i:2;s:8:\"minimize\";i:3;s:4:\"move\";i:4;s:6:\"resize\";i:5;s:6:\"shrink\";i:6;s:7:\"smaller\";}}s:14:\"fab fa-mintbit\";a:2:{s:5:\"label\";s:7:\"Mintbit\";s:6:\"search\";a:1:{i:0;s:7:\"mintbit\";}}s:12:\"fas fa-minus\";a:2:{s:5:\"label\";s:5:\"Minus\";s:6:\"search\";a:13:{i:0;s:7:\"En Dash\";i:1;s:10:\"Minus Sign\";i:2;s:8:\"collapse\";i:3;s:6:\"delete\";i:4;s:4:\"hide\";i:5;s:4:\"math\";i:6;s:6:\"minify\";i:7;s:5:\"minus\";i:8;s:8:\"negative\";i:9;s:6:\"remove\";i:10;s:4:\"sign\";i:11;s:5:\"trash\";i:12;s:3:\"−\";}}s:13:\"fas fa-mitten\";a:2:{s:5:\"label\";s:6:\"Mitten\";s:6:\"search\";a:8:{i:0;s:8:\"clothing\";i:1;s:4:\"cold\";i:2;s:5:\"glove\";i:3;s:5:\"hands\";i:4;s:7:\"knitted\";i:5;s:8:\"seasonal\";i:6;s:6:\"warmth\";i:7;s:6:\"mitten\";}}s:10:\"fab fa-mix\";a:2:{s:5:\"label\";s:3:\"Mix\";s:6:\"search\";a:1:{i:0;s:3:\"mix\";}}s:15:\"fab fa-mixcloud\";a:2:{s:5:\"label\";s:8:\"Mixcloud\";s:6:\"search\";a:1:{i:0;s:8:\"mixcloud\";}}s:12:\"fab fa-mixer\";a:2:{s:5:\"label\";s:5:\"Mixer\";s:6:\"search\";a:1:{i:0;s:5:\"mixer\";}}s:13:\"fab fa-mizuni\";a:2:{s:5:\"label\";s:6:\"Mizuni\";s:6:\"search\";a:1:{i:0;s:6:\"mizuni\";}}s:13:\"fas fa-mobile\";a:2:{s:5:\"label\";s:6:\"Mobile\";s:6:\"search\";a:12:{i:0;s:7:\"android\";i:1;s:4:\"call\";i:2;s:4:\"cell\";i:3;s:10:\"cell phone\";i:4;s:6:\"device\";i:5;s:6:\"mobile\";i:6;s:12:\"mobile phone\";i:7;s:6:\"number\";i:8;s:5:\"phone\";i:9;s:6:\"screen\";i:10;s:9:\"telephone\";i:11;s:4:\"text\";}}s:20:\"fas fa-mobile-button\";a:2:{s:5:\"label\";s:13:\"Mobile Button\";s:6:\"search\";a:10:{i:0;s:5:\"apple\";i:1;s:4:\"call\";i:2;s:10:\"cell phone\";i:3;s:6:\"device\";i:4;s:6:\"iphone\";i:5;s:6:\"number\";i:6;s:6:\"screen\";i:7;s:9:\"telephone\";i:8;s:13:\"mobile-button\";i:9;s:13:\"mobile button\";}}s:19:\"fas fa-mobile-retro\";a:2:{s:5:\"label\";s:12:\"Mobile Retro\";s:6:\"search\";a:5:{i:0;s:9:\"cellphone\";i:1;s:8:\"cellular\";i:2;s:5:\"phone\";i:3;s:12:\"mobile-retro\";i:4;s:12:\"mobile retro\";}}s:20:\"fas fa-mobile-screen\";a:2:{s:5:\"label\";s:13:\"Mobile Screen\";s:6:\"search\";a:10:{i:0;s:7:\"android\";i:1;s:4:\"call\";i:2;s:10:\"cell phone\";i:3;s:6:\"device\";i:4;s:6:\"number\";i:5;s:6:\"screen\";i:6;s:9:\"telephone\";i:7;s:4:\"text\";i:8;s:13:\"mobile-screen\";i:9;s:13:\"mobile screen\";}}s:27:\"fas fa-mobile-screen-button\";a:2:{s:5:\"label\";s:20:\"Mobile Screen Button\";s:6:\"search\";a:10:{i:0;s:5:\"apple\";i:1;s:4:\"call\";i:2;s:10:\"cell phone\";i:3;s:6:\"device\";i:4;s:6:\"iphone\";i:5;s:6:\"number\";i:6;s:6:\"screen\";i:7;s:9:\"telephone\";i:8;s:20:\"mobile-screen-button\";i:9;s:20:\"mobile screen button\";}}s:11:\"fab fa-modx\";a:2:{s:5:\"label\";s:4:\"MODX\";s:6:\"search\";a:1:{i:0;s:4:\"modx\";}}s:13:\"fab fa-monero\";a:2:{s:5:\"label\";s:6:\"Monero\";s:6:\"search\";a:1:{i:0;s:6:\"monero\";}}s:17:\"fas fa-money-bill\";a:2:{s:5:\"label\";s:10:\"Money Bill\";s:6:\"search\";a:14:{i:0;s:3:\"buy\";i:1;s:4:\"cash\";i:2;s:8:\"checkout\";i:3;s:6:\"coupon\";i:4;s:10:\"investment\";i:5;s:5:\"money\";i:6;s:7:\"payment\";i:7;s:7:\"premium\";i:8;s:5:\"price\";i:9;s:8:\"purchase\";i:10;s:7:\"revenue\";i:11;s:6:\"salary\";i:12;s:10:\"money-bill\";i:13;s:10:\"money bill\";}}s:19:\"fas fa-money-bill-1\";a:2:{s:5:\"label\";s:20:\"Money Bill 1 (solid)\";s:6:\"search\";a:11:{i:0;s:3:\"buy\";i:1;s:4:\"cash\";i:2;s:8:\"checkout\";i:3;s:5:\"money\";i:4;s:7:\"payment\";i:5;s:7:\"premium\";i:6;s:5:\"price\";i:7;s:8:\"purchase\";i:8;s:6:\"salary\";i:9;s:12:\"money-bill-1\";i:10;s:12:\"money bill 1\";}}s:19:\"far fa-money-bill-1\";a:2:{s:5:\"label\";s:22:\"Money Bill 1 (regular)\";s:6:\"search\";a:11:{i:0;s:3:\"buy\";i:1;s:4:\"cash\";i:2;s:8:\"checkout\";i:3;s:5:\"money\";i:4;s:7:\"payment\";i:5;s:7:\"premium\";i:6;s:5:\"price\";i:7;s:8:\"purchase\";i:8;s:6:\"salary\";i:9;s:12:\"money-bill-1\";i:10;s:12:\"money bill 1\";}}s:24:\"fas fa-money-bill-1-wave\";a:2:{s:5:\"label\";s:17:\"Money Bill 1 Wave\";s:6:\"search\";a:11:{i:0;s:3:\"buy\";i:1;s:4:\"cash\";i:2;s:8:\"checkout\";i:3;s:5:\"money\";i:4;s:7:\"payment\";i:5;s:7:\"premium\";i:6;s:5:\"price\";i:7;s:8:\"purchase\";i:8;s:6:\"salary\";i:9;s:17:\"money-bill-1-wave\";i:10;s:17:\"money bill 1 wave\";}}s:26:\"fas fa-money-bill-transfer\";a:2:{s:5:\"label\";s:19:\"Money Bill Transfer\";s:6:\"search\";a:10:{i:0;s:4:\"bank\";i:1;s:10:\"conversion\";i:2;s:7:\"deposit\";i:3;s:10:\"investment\";i:4;s:5:\"money\";i:5;s:6:\"salary\";i:6;s:8:\"transfer\";i:7;s:10:\"withdrawal\";i:8;s:19:\"money-bill-transfer\";i:9;s:19:\"money bill transfer\";}}s:26:\"fas fa-money-bill-trend-up\";a:2:{s:5:\"label\";s:19:\"Money Bill Trend Up\";s:6:\"search\";a:11:{i:0;s:4:\"bank\";i:1;s:5:\"bonds\";i:2;s:9:\"inflation\";i:3;s:10:\"investment\";i:4;s:6:\"market\";i:5;s:7:\"revenue\";i:6;s:6:\"salary\";i:7;s:6:\"stocks\";i:8;s:5:\"trade\";i:9;s:19:\"money-bill-trend-up\";i:10;s:19:\"money bill trend up\";}}s:22:\"fas fa-money-bill-wave\";a:2:{s:5:\"label\";s:15:\"Money Bill Wave\";s:6:\"search\";a:11:{i:0;s:3:\"buy\";i:1;s:4:\"cash\";i:2;s:8:\"checkout\";i:3;s:5:\"money\";i:4;s:7:\"payment\";i:5;s:7:\"premium\";i:6;s:5:\"price\";i:7;s:8:\"purchase\";i:8;s:6:\"salary\";i:9;s:15:\"money-bill-wave\";i:10;s:15:\"money bill wave\";}}s:23:\"fas fa-money-bill-wheat\";a:2:{s:5:\"label\";s:16:\"Money Bill Wheat\";s:6:\"search\";a:9:{i:0;s:12:\"agribusiness\";i:1;s:11:\"agriculture\";i:2;s:7:\"farming\";i:3;s:4:\"food\";i:4;s:10:\"investment\";i:5;s:10:\"livelihood\";i:6;s:7:\"subsidy\";i:7;s:16:\"money-bill-wheat\";i:8;s:16:\"money bill wheat\";}}s:18:\"fas fa-money-bills\";a:2:{s:5:\"label\";s:11:\"Money Bills\";s:6:\"search\";a:10:{i:0;s:3:\"atm\";i:1;s:4:\"cash\";i:2;s:10:\"investment\";i:3;s:5:\"money\";i:4;s:6:\"moolah\";i:5;s:7:\"premium\";i:6;s:7:\"revenue\";i:7;s:6:\"salary\";i:8;s:11:\"money-bills\";i:9;s:11:\"money bills\";}}s:18:\"fas fa-money-check\";a:2:{s:5:\"label\";s:11:\"Money Check\";s:6:\"search\";a:11:{i:0;s:10:\"bank check\";i:1;s:3:\"buy\";i:2;s:8:\"checkout\";i:3;s:6:\"cheque\";i:4;s:5:\"money\";i:5;s:7:\"payment\";i:6;s:5:\"price\";i:7;s:8:\"purchase\";i:8;s:6:\"salary\";i:9;s:11:\"money-check\";i:10;s:11:\"money check\";}}s:25:\"fas fa-money-check-dollar\";a:2:{s:5:\"label\";s:18:\"Money Check Dollar\";s:6:\"search\";a:11:{i:0;s:10:\"bank check\";i:1;s:3:\"buy\";i:2;s:8:\"checkout\";i:3;s:6:\"cheque\";i:4;s:5:\"money\";i:5;s:7:\"payment\";i:6;s:5:\"price\";i:7;s:8:\"purchase\";i:8;s:6:\"salary\";i:9;s:18:\"money-check-dollar\";i:10;s:18:\"money check dollar\";}}s:15:\"fas fa-monument\";a:2:{s:5:\"label\";s:8:\"Monument\";s:6:\"search\";a:5:{i:0;s:8:\"building\";i:1;s:8:\"historic\";i:2;s:8:\"landmark\";i:3;s:9:\"memorable\";i:4;s:8:\"monument\";}}s:11:\"fas fa-moon\";a:2:{s:5:\"label\";s:12:\"Moon (solid)\";s:6:\"search\";a:8:{i:0;s:18:\"Power Sleep Symbol\";i:1;s:8:\"contrast\";i:2;s:8:\"crescent\";i:3;s:13:\"crescent moon\";i:4;s:4:\"dark\";i:5;s:5:\"lunar\";i:6;s:4:\"moon\";i:7;s:5:\"night\";}}s:11:\"far fa-moon\";a:2:{s:5:\"label\";s:14:\"Moon (regular)\";s:6:\"search\";a:8:{i:0;s:18:\"Power Sleep Symbol\";i:1;s:8:\"contrast\";i:2;s:8:\"crescent\";i:3;s:13:\"crescent moon\";i:4;s:4:\"dark\";i:5;s:5:\"lunar\";i:6;s:4:\"moon\";i:7;s:5:\"night\";}}s:20:\"fas fa-mortar-pestle\";a:2:{s:5:\"label\";s:13:\"Mortar Pestle\";s:6:\"search\";a:10:{i:0;s:5:\"crush\";i:1;s:8:\"culinary\";i:2;s:5:\"grind\";i:3;s:7:\"medical\";i:4;s:3:\"mix\";i:5;s:8:\"pharmacy\";i:6;s:12:\"prescription\";i:7;s:6:\"spices\";i:8;s:13:\"mortar-pestle\";i:9;s:13:\"mortar pestle\";}}s:13:\"fas fa-mosque\";a:2:{s:5:\"label\";s:6:\"Mosque\";s:6:\"search\";a:7:{i:0;s:6:\"Muslim\";i:1;s:8:\"building\";i:2;s:5:\"islam\";i:3;s:8:\"landmark\";i:4;s:6:\"mosque\";i:5;s:6:\"muslim\";i:6;s:8:\"religion\";}}s:15:\"fas fa-mosquito\";a:2:{s:5:\"label\";s:8:\"Mosquito\";s:6:\"search\";a:4:{i:0;s:4:\"bite\";i:1;s:3:\"bug\";i:2;s:8:\"mosquito\";i:3;s:9:\"west nile\";}}s:19:\"fas fa-mosquito-net\";a:2:{s:5:\"label\";s:12:\"Mosquito Net\";s:6:\"search\";a:6:{i:0;s:4:\"bite\";i:1;s:7:\"malaria\";i:2;s:8:\"mosquito\";i:3;s:3:\"net\";i:4;s:12:\"mosquito-net\";i:5;s:12:\"mosquito net\";}}s:17:\"fas fa-motorcycle\";a:2:{s:5:\"label\";s:10:\"Motorcycle\";s:6:\"search\";a:6:{i:0;s:4:\"bike\";i:1;s:7:\"machine\";i:2;s:10:\"motorcycle\";i:3;s:6:\"racing\";i:4;s:14:\"transportation\";i:5;s:7:\"vehicle\";}}s:12:\"fas fa-mound\";a:2:{s:5:\"label\";s:5:\"Mound\";s:6:\"search\";a:5:{i:0;s:7:\"barrier\";i:1;s:4:\"hill\";i:2;s:7:\"pitcher\";i:3;s:9:\"speedbump\";i:4;s:5:\"mound\";}}s:15:\"fas fa-mountain\";a:2:{s:5:\"label\";s:8:\"Mountain\";s:6:\"search\";a:10:{i:0;s:4:\"cold\";i:1;s:7:\"glacier\";i:2;s:6:\"hiking\";i:3;s:4:\"hill\";i:4;s:9:\"landscape\";i:5;s:8:\"mountain\";i:6;s:4:\"snow\";i:7;s:20:\"snow-capped mountain\";i:8;s:6:\"travel\";i:9;s:4:\"view\";}}s:20:\"fas fa-mountain-city\";a:2:{s:5:\"label\";s:13:\"Mountain City\";s:6:\"search\";a:5:{i:0;s:8:\"location\";i:1;s:5:\"rural\";i:2;s:5:\"urban\";i:3;s:13:\"mountain-city\";i:4;s:13:\"mountain city\";}}s:19:\"fas fa-mountain-sun\";a:2:{s:5:\"label\";s:12:\"Mountain Sun\";s:6:\"search\";a:8:{i:0;s:7:\"country\";i:1;s:6:\"hiking\";i:2;s:9:\"landscape\";i:3;s:5:\"rural\";i:4;s:6:\"travel\";i:5;s:4:\"view\";i:6;s:12:\"mountain-sun\";i:7;s:12:\"mountain sun\";}}s:14:\"fas fa-mug-hot\";a:2:{s:5:\"label\";s:7:\"Mug Hot\";s:6:\"search\";a:16:{i:0;s:8:\"beverage\";i:1;s:8:\"caliente\";i:2;s:5:\"cocoa\";i:3;s:6:\"coffee\";i:4;s:3:\"cup\";i:5;s:5:\"drink\";i:6;s:7:\"holiday\";i:7;s:3:\"hot\";i:8;s:12:\"hot beverage\";i:9;s:13:\"hot chocolate\";i:10;s:5:\"steam\";i:11;s:8:\"steaming\";i:12;s:3:\"tea\";i:13;s:6:\"warmth\";i:14;s:7:\"mug-hot\";i:15;s:7:\"mug hot\";}}s:17:\"fas fa-mug-saucer\";a:2:{s:5:\"label\";s:10:\"Mug Saucer\";s:6:\"search\";a:11:{i:0;s:8:\"beverage\";i:1;s:9:\"breakfast\";i:2;s:4:\"cafe\";i:3;s:5:\"drink\";i:4;s:4:\"fall\";i:5;s:7:\"morning\";i:6;s:3:\"mug\";i:7;s:8:\"seasonal\";i:8;s:3:\"tea\";i:9;s:10:\"mug-saucer\";i:10;s:10:\"mug saucer\";}}s:12:\"fas fa-music\";a:2:{s:5:\"label\";s:5:\"Music\";s:6:\"search\";a:7:{i:0;s:6:\"lyrics\";i:1;s:6:\"melody\";i:2;s:5:\"music\";i:3;s:12:\"musical note\";i:4;s:4:\"note\";i:5;s:4:\"sing\";i:6;s:5:\"sound\";}}s:8:\"fas fa-n\";a:2:{s:5:\"label\";s:1:\"N\";s:6:\"search\";a:6:{i:0;s:22:\"Latin Capital Letter N\";i:1;s:20:\"Latin Small Letter N\";i:2;s:6:\"letter\";i:3;s:3:\"nay\";i:4;s:2:\"no\";i:5;s:1:\"n\";}}s:17:\"fas fa-naira-sign\";a:2:{s:5:\"label\";s:10:\"Naira Sign\";s:6:\"search\";a:4:{i:0;s:10:\"Naira Sign\";i:1;s:8:\"currency\";i:2;s:10:\"naira-sign\";i:3;s:10:\"naira sign\";}}s:14:\"fab fa-napster\";a:2:{s:5:\"label\";s:7:\"Napster\";s:6:\"search\";a:1:{i:0;s:7:\"napster\";}}s:11:\"fab fa-neos\";a:2:{s:5:\"label\";s:4:\"Neos\";s:6:\"search\";a:1:{i:0;s:4:\"neos\";}}s:20:\"fas fa-network-wired\";a:2:{s:5:\"label\";s:13:\"Network Wired\";s:6:\"search\";a:7:{i:0;s:8:\"computer\";i:1;s:7:\"connect\";i:2;s:8:\"ethernet\";i:3;s:8:\"internet\";i:4;s:8:\"intranet\";i:5;s:13:\"network-wired\";i:6;s:13:\"network wired\";}}s:13:\"fas fa-neuter\";a:2:{s:5:\"label\";s:6:\"Neuter\";s:6:\"search\";a:3:{i:0;s:6:\"Neuter\";i:1;s:6:\"gender\";i:2;s:6:\"neuter\";}}s:16:\"fas fa-newspaper\";a:2:{s:5:\"label\";s:17:\"Newspaper (solid)\";s:6:\"search\";a:10:{i:0;s:7:\"article\";i:1;s:9:\"editorial\";i:2;s:8:\"headline\";i:3;s:7:\"journal\";i:4;s:10:\"journalism\";i:5;s:4:\"news\";i:6;s:10:\"newsletter\";i:7;s:9:\"newspaper\";i:8;s:5:\"paper\";i:9;s:5:\"press\";}}s:16:\"far fa-newspaper\";a:2:{s:5:\"label\";s:19:\"Newspaper (regular)\";s:6:\"search\";a:10:{i:0;s:7:\"article\";i:1;s:9:\"editorial\";i:2;s:8:\"headline\";i:3;s:7:\"journal\";i:4;s:10:\"journalism\";i:5;s:4:\"news\";i:6;s:10:\"newsletter\";i:7;s:9:\"newspaper\";i:8;s:5:\"paper\";i:9;s:5:\"press\";}}s:22:\"fab fa-nfc-directional\";a:2:{s:5:\"label\";s:15:\"NFC Directional\";s:6:\"search\";a:10:{i:0;s:7:\"connect\";i:1;s:4:\"data\";i:2;s:24:\"near field communication\";i:3;s:3:\"nfc\";i:4;s:4:\"scan\";i:5;s:6:\"signal\";i:6;s:8:\"transfer\";i:7;s:8:\"wireless\";i:8;s:15:\"nfc-directional\";i:9;s:15:\"nfc directional\";}}s:17:\"fab fa-nfc-symbol\";a:2:{s:5:\"label\";s:10:\"Nfc Symbol\";s:6:\"search\";a:10:{i:0;s:7:\"connect\";i:1;s:4:\"data\";i:2;s:24:\"near field communication\";i:3;s:3:\"nfc\";i:4;s:4:\"scan\";i:5;s:6:\"signal\";i:6;s:8:\"transfer\";i:7;s:8:\"wireless\";i:8;s:10:\"nfc-symbol\";i:9;s:10:\"nfc symbol\";}}s:13:\"fab fa-nimblr\";a:2:{s:5:\"label\";s:6:\"Nimblr\";s:6:\"search\";a:1:{i:0;s:6:\"nimblr\";}}s:11:\"fab fa-node\";a:2:{s:5:\"label\";s:7:\"Node.js\";s:6:\"search\";a:2:{i:0;s:4:\"node\";i:1;s:7:\"node.js\";}}s:14:\"fab fa-node-js\";a:2:{s:5:\"label\";s:10:\"Node.js JS\";s:6:\"search\";a:2:{i:0;s:7:\"node-js\";i:1;s:10:\"node.js js\";}}s:16:\"fas fa-not-equal\";a:2:{s:5:\"label\";s:9:\"Not Equal\";s:6:\"search\";a:5:{i:0;s:10:\"arithmetic\";i:1;s:7:\"compare\";i:2;s:4:\"math\";i:3;s:9:\"not-equal\";i:4;s:9:\"not equal\";}}s:13:\"fas fa-notdef\";a:2:{s:5:\"label\";s:6:\"Notdef\";s:6:\"search\";a:5:{i:0;s:3:\"404\";i:1;s:5:\"close\";i:2;s:7:\"missing\";i:3;s:9:\"not found\";i:4;s:6:\"notdef\";}}s:18:\"fas fa-note-sticky\";a:2:{s:5:\"label\";s:19:\"Note Sticky (solid)\";s:6:\"search\";a:7:{i:0;s:7:\"message\";i:1;s:4:\"note\";i:2;s:5:\"paper\";i:3;s:8:\"reminder\";i:4;s:7:\"sticker\";i:5;s:11:\"note-sticky\";i:6;s:11:\"note sticky\";}}s:18:\"far fa-note-sticky\";a:2:{s:5:\"label\";s:21:\"Note Sticky (regular)\";s:6:\"search\";a:7:{i:0;s:7:\"message\";i:1;s:4:\"note\";i:2;s:5:\"paper\";i:3;s:8:\"reminder\";i:4;s:7:\"sticker\";i:5;s:11:\"note-sticky\";i:6;s:11:\"note sticky\";}}s:20:\"fas fa-notes-medical\";a:2:{s:5:\"label\";s:13:\"Notes Medical\";s:6:\"search\";a:8:{i:0;s:9:\"clipboard\";i:1;s:6:\"doctor\";i:2;s:3:\"ehr\";i:3;s:6:\"health\";i:4;s:7:\"history\";i:5;s:7:\"records\";i:6;s:13:\"notes-medical\";i:7;s:13:\"notes medical\";}}s:10:\"fab fa-npm\";a:2:{s:5:\"label\";s:3:\"npm\";s:6:\"search\";a:1:{i:0;s:3:\"npm\";}}s:10:\"fab fa-ns8\";a:2:{s:5:\"label\";s:3:\"NS8\";s:6:\"search\";a:1:{i:0;s:3:\"ns8\";}}s:18:\"fab fa-nutritionix\";a:2:{s:5:\"label\";s:11:\"Nutritionix\";s:6:\"search\";a:1:{i:0;s:11:\"nutritionix\";}}s:8:\"fas fa-o\";a:2:{s:5:\"label\";s:1:\"O\";s:6:\"search\";a:4:{i:0;s:22:\"Latin Capital Letter O\";i:1;s:20:\"Latin Small Letter O\";i:2;s:6:\"letter\";i:3;s:1:\"o\";}}s:19:\"fas fa-object-group\";a:2:{s:5:\"label\";s:20:\"Object Group (solid)\";s:6:\"search\";a:7:{i:0;s:7:\"combine\";i:1;s:4:\"copy\";i:2;s:6:\"design\";i:3;s:5:\"merge\";i:4;s:6:\"select\";i:5;s:12:\"object-group\";i:6;s:12:\"object group\";}}s:19:\"far fa-object-group\";a:2:{s:5:\"label\";s:22:\"Object Group (regular)\";s:6:\"search\";a:7:{i:0;s:7:\"combine\";i:1;s:4:\"copy\";i:2;s:6:\"design\";i:3;s:5:\"merge\";i:4;s:6:\"select\";i:5;s:12:\"object-group\";i:6;s:12:\"object group\";}}s:21:\"fas fa-object-ungroup\";a:2:{s:5:\"label\";s:22:\"Object Ungroup (solid)\";s:6:\"search\";a:7:{i:0;s:4:\"copy\";i:1;s:6:\"design\";i:2;s:5:\"merge\";i:3;s:6:\"select\";i:4;s:8:\"separate\";i:5;s:14:\"object-ungroup\";i:6;s:14:\"object ungroup\";}}s:21:\"far fa-object-ungroup\";a:2:{s:5:\"label\";s:24:\"Object Ungroup (regular)\";s:6:\"search\";a:7:{i:0;s:4:\"copy\";i:1;s:6:\"design\";i:2;s:5:\"merge\";i:3;s:6:\"select\";i:4;s:8:\"separate\";i:5;s:14:\"object-ungroup\";i:6;s:14:\"object ungroup\";}}s:21:\"fab fa-octopus-deploy\";a:2:{s:5:\"label\";s:14:\"Octopus Deploy\";s:6:\"search\";a:2:{i:0;s:14:\"octopus-deploy\";i:1;s:14:\"octopus deploy\";}}s:20:\"fab fa-odnoklassniki\";a:2:{s:5:\"label\";s:13:\"Odnoklassniki\";s:6:\"search\";a:1:{i:0;s:13:\"odnoklassniki\";}}s:13:\"fab fa-odysee\";a:2:{s:5:\"label\";s:6:\"Odysee\";s:6:\"search\";a:1:{i:0;s:6:\"odysee\";}}s:14:\"fas fa-oil-can\";a:2:{s:5:\"label\";s:7:\"Oil Can\";s:6:\"search\";a:8:{i:0;s:4:\"auto\";i:1;s:5:\"crude\";i:2;s:8:\"gasoline\";i:3;s:6:\"grease\";i:4;s:9:\"lubricate\";i:5;s:9:\"petroleum\";i:6;s:7:\"oil-can\";i:7;s:7:\"oil can\";}}s:15:\"fas fa-oil-well\";a:2:{s:5:\"label\";s:8:\"Oil Well\";s:6:\"search\";a:5:{i:0;s:5:\"drill\";i:1;s:3:\"oil\";i:2;s:3:\"rig\";i:3;s:8:\"oil-well\";i:4;s:8:\"oil well\";}}s:19:\"fab fa-old-republic\";a:2:{s:5:\"label\";s:12:\"Old Republic\";s:6:\"search\";a:4:{i:0;s:8:\"politics\";i:1;s:9:\"star wars\";i:2;s:12:\"old-republic\";i:3;s:12:\"old republic\";}}s:9:\"fas fa-om\";a:2:{s:5:\"label\";s:2:\"Om\";s:6:\"search\";a:7:{i:0;s:5:\"Hindu\";i:1;s:8:\"buddhism\";i:2;s:8:\"hinduism\";i:3;s:7:\"jainism\";i:4;s:6:\"mantra\";i:5;s:2:\"om\";i:6;s:8:\"religion\";}}s:15:\"fab fa-opencart\";a:2:{s:5:\"label\";s:8:\"OpenCart\";s:6:\"search\";a:1:{i:0;s:8:\"opencart\";}}s:13:\"fab fa-openid\";a:2:{s:5:\"label\";s:6:\"OpenID\";s:6:\"search\";a:1:{i:0;s:6:\"openid\";}}s:15:\"fab fa-opensuse\";a:2:{s:5:\"label\";s:8:\"Opensuse\";s:6:\"search\";a:1:{i:0;s:8:\"opensuse\";}}s:12:\"fab fa-opera\";a:2:{s:5:\"label\";s:5:\"Opera\";s:6:\"search\";a:1:{i:0;s:5:\"opera\";}}s:20:\"fab fa-optin-monster\";a:2:{s:5:\"label\";s:13:\"Optin Monster\";s:6:\"search\";a:2:{i:0;s:13:\"optin-monster\";i:1;s:13:\"optin monster\";}}s:12:\"fab fa-orcid\";a:2:{s:5:\"label\";s:5:\"ORCID\";s:6:\"search\";a:1:{i:0;s:5:\"orcid\";}}s:10:\"fab fa-osi\";a:2:{s:5:\"label\";s:22:\"Open Source Initiative\";s:6:\"search\";a:2:{i:0;s:3:\"osi\";i:1;s:22:\"open source initiative\";}}s:12:\"fas fa-otter\";a:2:{s:5:\"label\";s:5:\"Otter\";s:6:\"search\";a:9:{i:0;s:6:\"animal\";i:1;s:6:\"badger\";i:2;s:5:\"fauna\";i:3;s:7:\"fishing\";i:4;s:3:\"fur\";i:5;s:6:\"mammal\";i:6;s:6:\"marten\";i:7;s:5:\"otter\";i:8;s:7:\"playful\";}}s:14:\"fas fa-outdent\";a:2:{s:5:\"label\";s:7:\"Outdent\";s:6:\"search\";a:5:{i:0;s:5:\"align\";i:1;s:7:\"justify\";i:2;s:9:\"paragraph\";i:3;s:3:\"tab\";i:4;s:7:\"outdent\";}}s:8:\"fas fa-p\";a:2:{s:5:\"label\";s:1:\"P\";s:6:\"search\";a:4:{i:0;s:22:\"Latin Capital Letter P\";i:1;s:20:\"Latin Small Letter P\";i:2;s:6:\"letter\";i:3;s:1:\"p\";}}s:13:\"fab fa-padlet\";a:2:{s:5:\"label\";s:6:\"Padlet\";s:6:\"search\";a:1:{i:0;s:6:\"padlet\";}}s:12:\"fab fa-page4\";a:2:{s:5:\"label\";s:17:\"page4 Corporation\";s:6:\"search\";a:2:{i:0;s:5:\"page4\";i:1;s:17:\"page4 corporation\";}}s:16:\"fab fa-pagelines\";a:2:{s:5:\"label\";s:9:\"Pagelines\";s:6:\"search\";a:8:{i:0;s:3:\"eco\";i:1;s:5:\"flora\";i:2;s:4:\"leaf\";i:3;s:6:\"leaves\";i:4;s:6:\"nature\";i:5;s:5:\"plant\";i:6;s:4:\"tree\";i:7;s:9:\"pagelines\";}}s:12:\"fas fa-pager\";a:2:{s:5:\"label\";s:5:\"Pager\";s:6:\"search\";a:5:{i:0;s:6:\"beeper\";i:1;s:10:\"cell phone\";i:2;s:13:\"communication\";i:3;s:4:\"page\";i:4;s:5:\"pager\";}}s:19:\"fas fa-paint-roller\";a:2:{s:5:\"label\";s:12:\"Paint Roller\";s:6:\"search\";a:11:{i:0;s:7:\"acrylic\";i:1;s:3:\"art\";i:2;s:5:\"brush\";i:3;s:5:\"color\";i:4;s:4:\"fill\";i:5;s:11:\"maintenance\";i:6;s:5:\"paint\";i:7;s:7:\"pigment\";i:8;s:10:\"watercolor\";i:9;s:12:\"paint-roller\";i:10;s:12:\"paint roller\";}}s:17:\"fas fa-paintbrush\";a:2:{s:5:\"label\";s:10:\"Paintbrush\";s:6:\"search\";a:11:{i:0;s:7:\"acrylic\";i:1;s:3:\"art\";i:2;s:5:\"brush\";i:3;s:5:\"color\";i:4;s:4:\"fill\";i:5;s:6:\"modify\";i:6;s:5:\"paint\";i:7;s:10:\"paintbrush\";i:8;s:8:\"painting\";i:9;s:7:\"pigment\";i:10;s:10:\"watercolor\";}}s:14:\"fas fa-palette\";a:2:{s:5:\"label\";s:7:\"Palette\";s:6:\"search\";a:12:{i:0;s:7:\"acrylic\";i:1;s:3:\"art\";i:2;s:14:\"artist palette\";i:3;s:5:\"brush\";i:4;s:5:\"color\";i:5;s:4:\"fill\";i:6;s:6:\"museum\";i:7;s:5:\"paint\";i:8;s:8:\"painting\";i:9;s:7:\"palette\";i:10;s:7:\"pigment\";i:11;s:10:\"watercolor\";}}s:13:\"fab fa-palfed\";a:2:{s:5:\"label\";s:6:\"Palfed\";s:6:\"search\";a:1:{i:0;s:6:\"palfed\";}}s:13:\"fas fa-pallet\";a:2:{s:5:\"label\";s:6:\"Pallet\";s:6:\"search\";a:6:{i:0;s:7:\"archive\";i:1;s:3:\"box\";i:2;s:9:\"inventory\";i:3;s:8:\"shipping\";i:4;s:9:\"warehouse\";i:5;s:6:\"pallet\";}}s:15:\"fas fa-panorama\";a:2:{s:5:\"label\";s:8:\"Panorama\";s:6:\"search\";a:6:{i:0;s:5:\"image\";i:1;s:3:\"img\";i:2;s:9:\"landscape\";i:3;s:5:\"photo\";i:4;s:4:\"wide\";i:5;s:8:\"panorama\";}}s:18:\"fas fa-paper-plane\";a:2:{s:5:\"label\";s:19:\"Paper Plane (solid)\";s:6:\"search\";a:8:{i:0;s:3:\"air\";i:1;s:5:\"float\";i:2;s:4:\"fold\";i:3;s:4:\"mail\";i:4;s:5:\"paper\";i:5;s:4:\"send\";i:6;s:11:\"paper-plane\";i:7;s:11:\"paper plane\";}}s:18:\"far fa-paper-plane\";a:2:{s:5:\"label\";s:21:\"Paper Plane (regular)\";s:6:\"search\";a:8:{i:0;s:3:\"air\";i:1;s:5:\"float\";i:2;s:4:\"fold\";i:3;s:4:\"mail\";i:4;s:5:\"paper\";i:5;s:4:\"send\";i:6;s:11:\"paper-plane\";i:7;s:11:\"paper plane\";}}s:16:\"fas fa-paperclip\";a:2:{s:5:\"label\";s:9:\"Paperclip\";s:6:\"search\";a:6:{i:0;s:6:\"attach\";i:1;s:10:\"attachment\";i:2;s:7:\"connect\";i:3;s:4:\"link\";i:4;s:8:\"papercli\";i:5;s:9:\"paperclip\";}}s:20:\"fas fa-parachute-box\";a:2:{s:5:\"label\";s:13:\"Parachute Box\";s:6:\"search\";a:8:{i:0;s:3:\"aid\";i:1;s:10:\"assistance\";i:2;s:5:\"goods\";i:3;s:6:\"relief\";i:4;s:6:\"rescue\";i:5;s:8:\"supplies\";i:6;s:13:\"parachute-box\";i:7;s:13:\"parachute box\";}}s:16:\"fas fa-paragraph\";a:2:{s:5:\"label\";s:9:\"Paragraph\";s:6:\"search\";a:6:{i:0;s:12:\"Pilcrow Sign\";i:1;s:4:\"edit\";i:2;s:6:\"format\";i:3;s:4:\"text\";i:4;s:7:\"writing\";i:5;s:9:\"paragraph\";}}s:15:\"fas fa-passport\";a:2:{s:5:\"label\";s:8:\"Passport\";s:6:\"search\";a:6:{i:0;s:8:\"document\";i:1;s:2:\"id\";i:2;s:14:\"identification\";i:3;s:6:\"issued\";i:4;s:6:\"travel\";i:5;s:8:\"passport\";}}s:12:\"fas fa-paste\";a:2:{s:5:\"label\";s:13:\"Paste (solid)\";s:6:\"search\";a:5:{i:0;s:9:\"clipboard\";i:1;s:4:\"copy\";i:2;s:8:\"document\";i:3;s:5:\"paper\";i:4;s:5:\"paste\";}}s:12:\"far fa-paste\";a:2:{s:5:\"label\";s:15:\"Paste (regular)\";s:6:\"search\";a:5:{i:0;s:9:\"clipboard\";i:1;s:4:\"copy\";i:2;s:8:\"document\";i:3;s:5:\"paper\";i:4;s:5:\"paste\";}}s:14:\"fab fa-patreon\";a:2:{s:5:\"label\";s:7:\"Patreon\";s:6:\"search\";a:1:{i:0;s:7:\"patreon\";}}s:12:\"fas fa-pause\";a:2:{s:5:\"label\";s:5:\"Pause\";s:6:\"search\";a:7:{i:0;s:3:\"bar\";i:1;s:6:\"double\";i:2;s:4:\"hold\";i:3;s:5:\"pause\";i:4;s:12:\"pause button\";i:5;s:8:\"vertical\";i:6;s:4:\"wait\";}}s:10:\"fas fa-paw\";a:2:{s:5:\"label\";s:3:\"Paw\";s:6:\"search\";a:6:{i:0;s:6:\"animal\";i:1;s:3:\"cat\";i:2;s:3:\"dog\";i:3;s:3:\"pet\";i:4;s:5:\"print\";i:5;s:3:\"paw\";}}s:13:\"fab fa-paypal\";a:2:{s:5:\"label\";s:6:\"Paypal\";s:6:\"search\";a:1:{i:0;s:6:\"paypal\";}}s:12:\"fas fa-peace\";a:2:{s:5:\"label\";s:5:\"Peace\";s:6:\"search\";a:6:{i:0;s:5:\"peace\";i:1;s:12:\"peace symbol\";i:2;s:8:\"serenity\";i:3;s:11:\"tranquility\";i:4;s:5:\"truce\";i:5;s:3:\"war\";}}s:10:\"fas fa-pen\";a:2:{s:5:\"label\";s:3:\"Pen\";s:6:\"search\";a:7:{i:0;s:9:\"ballpoint\";i:1;s:6:\"design\";i:2;s:4:\"edit\";i:3;s:6:\"modify\";i:4;s:3:\"pen\";i:5;s:6:\"update\";i:6;s:5:\"write\";}}s:15:\"fas fa-pen-clip\";a:2:{s:5:\"label\";s:8:\"Pen Clip\";s:6:\"search\";a:7:{i:0;s:6:\"design\";i:1;s:4:\"edit\";i:2;s:6:\"modify\";i:3;s:6:\"update\";i:4;s:5:\"write\";i:5;s:8:\"pen-clip\";i:6;s:8:\"pen clip\";}}s:16:\"fas fa-pen-fancy\";a:2:{s:5:\"label\";s:9:\"Pen Fancy\";s:6:\"search\";a:12:{i:0;s:9:\"black nib\";i:1;s:6:\"design\";i:2;s:4:\"edit\";i:3;s:8:\"fountain\";i:4;s:12:\"fountain pen\";i:5;s:6:\"modify\";i:6;s:3:\"nib\";i:7;s:3:\"pen\";i:8;s:6:\"update\";i:9;s:5:\"write\";i:10;s:9:\"pen-fancy\";i:11;s:9:\"pen fancy\";}}s:14:\"fas fa-pen-nib\";a:2:{s:5:\"label\";s:7:\"Pen Nib\";s:6:\"search\";a:8:{i:0;s:6:\"design\";i:1;s:4:\"edit\";i:2;s:12:\"fountain pen\";i:3;s:6:\"modify\";i:4;s:6:\"update\";i:5;s:5:\"write\";i:6;s:7:\"pen-nib\";i:7;s:7:\"pen nib\";}}s:16:\"fas fa-pen-ruler\";a:2:{s:5:\"label\";s:9:\"Pen Ruler\";s:6:\"search\";a:8:{i:0;s:6:\"design\";i:1;s:5:\"draft\";i:2;s:4:\"draw\";i:3;s:11:\"maintenance\";i:4;s:6:\"modify\";i:5;s:6:\"pencil\";i:6;s:9:\"pen-ruler\";i:7;s:9:\"pen ruler\";}}s:20:\"fas fa-pen-to-square\";a:2:{s:5:\"label\";s:21:\"Pen To Square (solid)\";s:6:\"search\";a:8:{i:0;s:4:\"edit\";i:1;s:6:\"modify\";i:2;s:3:\"pen\";i:3;s:6:\"pencil\";i:4;s:6:\"update\";i:5;s:5:\"write\";i:6;s:13:\"pen-to-square\";i:7;s:13:\"pen to square\";}}s:20:\"far fa-pen-to-square\";a:2:{s:5:\"label\";s:23:\"Pen To Square (regular)\";s:6:\"search\";a:8:{i:0;s:4:\"edit\";i:1;s:6:\"modify\";i:2;s:3:\"pen\";i:3;s:6:\"pencil\";i:4;s:6:\"update\";i:5;s:5:\"write\";i:6;s:13:\"pen-to-square\";i:7;s:13:\"pen to square\";}}s:13:\"fas fa-pencil\";a:2:{s:5:\"label\";s:6:\"Pencil\";s:6:\"search\";a:10:{i:0;s:17:\"Lower Left Pencil\";i:1;s:6:\"design\";i:2;s:4:\"draw\";i:3;s:4:\"edit\";i:4;s:4:\"lead\";i:5;s:11:\"maintenance\";i:6;s:6:\"modify\";i:7;s:6:\"pencil\";i:8;s:6:\"update\";i:9;s:5:\"write\";}}s:20:\"fas fa-people-arrows\";a:2:{s:5:\"label\";s:13:\"People Arrows\";s:6:\"search\";a:14:{i:0;s:13:\" conversation\";i:1;s:11:\" discussion\";i:2;s:8:\" talking\";i:3;s:8:\"distance\";i:4;s:6:\"insert\";i:5;s:9:\"isolation\";i:6;s:8:\"separate\";i:7;s:17:\"social distancing\";i:8;s:4:\"talk\";i:9;s:8:\"together\";i:10;s:3:\"uer\";i:11;s:12:\"users-people\";i:12;s:13:\"people-arrows\";i:13;s:13:\"people arrows\";}}s:23:\"fas fa-people-carry-box\";a:2:{s:5:\"label\";s:16:\"People Carry Box\";s:6:\"search\";a:5:{i:0;s:8:\"together\";i:1;s:3:\"uer\";i:2;s:12:\"users-people\";i:3;s:16:\"people-carry-box\";i:4;s:16:\"people carry box\";}}s:19:\"fas fa-people-group\";a:2:{s:5:\"label\";s:12:\"People Group\";s:6:\"search\";a:8:{i:0;s:5:\"crowd\";i:1;s:6:\"family\";i:2;s:5:\"group\";i:3;s:4:\"team\";i:4;s:8:\"together\";i:5;s:3:\"uer\";i:6;s:12:\"people-group\";i:7;s:12:\"people group\";}}s:18:\"fas fa-people-line\";a:2:{s:5:\"label\";s:11:\"People Line\";s:6:\"search\";a:7:{i:0;s:5:\"crowd\";i:1;s:5:\"group\";i:2;s:4:\"need\";i:3;s:8:\"together\";i:4;s:3:\"uer\";i:5;s:11:\"people-line\";i:6;s:11:\"people line\";}}s:21:\"fas fa-people-pulling\";a:2:{s:5:\"label\";s:14:\"People Pulling\";s:6:\"search\";a:6:{i:0;s:13:\"forced return\";i:1;s:8:\"together\";i:2;s:3:\"uer\";i:3;s:7:\"yanking\";i:4;s:14:\"people-pulling\";i:5;s:14:\"people pulling\";}}s:21:\"fas fa-people-robbery\";a:2:{s:5:\"label\";s:14:\"People Robbery\";s:6:\"search\";a:8:{i:0;s:8:\"criminal\";i:1;s:8:\"hands up\";i:2;s:7:\"looting\";i:3;s:7:\"robbery\";i:4;s:5:\"steal\";i:5;s:3:\"uer\";i:6;s:14:\"people-robbery\";i:7;s:14:\"people robbery\";}}s:18:\"fas fa-people-roof\";a:2:{s:5:\"label\";s:11:\"People Roof\";s:6:\"search\";a:11:{i:0;s:5:\"crowd\";i:1;s:6:\"family\";i:2;s:5:\"group\";i:3;s:6:\"manage\";i:4;s:6:\"people\";i:5;s:4:\"safe\";i:6;s:7:\"shelter\";i:7;s:8:\"together\";i:8;s:3:\"uer\";i:9;s:11:\"people-roof\";i:10;s:11:\"people roof\";}}s:17:\"fas fa-pepper-hot\";a:2:{s:5:\"label\";s:10:\"Pepper Hot\";s:6:\"search\";a:15:{i:0;s:13:\"buffalo wings\";i:1;s:8:\"capsicum\";i:2;s:5:\"chili\";i:3;s:6:\"chilli\";i:4;s:8:\"habanero\";i:5;s:3:\"hot\";i:6;s:10:\"hot pepper\";i:7;s:8:\"jalapeno\";i:8;s:7:\"mexican\";i:9;s:6:\"pepper\";i:10;s:5:\"spicy\";i:11;s:7:\"tabasco\";i:12;s:9:\"vegetable\";i:13;s:10:\"pepper-hot\";i:14;s:10:\"pepper hot\";}}s:14:\"fab fa-perbyte\";a:2:{s:5:\"label\";s:7:\"PerByte\";s:6:\"search\";a:1:{i:0;s:7:\"perbyte\";}}s:14:\"fas fa-percent\";a:2:{s:5:\"label\";s:7:\"Percent\";s:6:\"search\";a:7:{i:0;s:12:\"Percent Sign\";i:1;s:8:\"discount\";i:2;s:8:\"fraction\";i:3;s:10:\"proportion\";i:4;s:4:\"rate\";i:5;s:5:\"ratio\";i:6;s:7:\"percent\";}}s:16:\"fab fa-periscope\";a:2:{s:5:\"label\";s:9:\"Periscope\";s:6:\"search\";a:1:{i:0;s:9:\"periscope\";}}s:13:\"fas fa-person\";a:2:{s:5:\"label\";s:6:\"Person\";s:6:\"search\";a:8:{i:0;s:7:\"default\";i:1;s:3:\"man\";i:2;s:15:\"person standing\";i:3;s:5:\"stand\";i:4;s:8:\"standing\";i:5;s:3:\"uer\";i:6;s:5:\"woman\";i:7;s:6:\"person\";}}s:32:\"fas fa-person-arrow-down-to-line\";a:2:{s:5:\"label\";s:25:\"Person Arrow Down To Line\";s:6:\"search\";a:7:{i:0;s:6:\"ground\";i:1;s:10:\"indigenous\";i:2;s:6:\"insert\";i:3;s:6:\"native\";i:4;s:3:\"uer\";i:5;s:25:\"person-arrow-down-to-line\";i:6;s:25:\"person arrow down to line\";}}s:32:\"fas fa-person-arrow-up-from-line\";a:2:{s:5:\"label\";s:25:\"Person Arrow Up From Line\";s:6:\"search\";a:6:{i:0;s:10:\"population\";i:1;s:4:\"rise\";i:2;s:3:\"uer\";i:3;s:7:\"upgrade\";i:4;s:25:\"person-arrow-up-from-line\";i:5;s:25:\"person arrow up from line\";}}s:20:\"fas fa-person-biking\";a:2:{s:5:\"label\";s:13:\"Person Biking\";s:6:\"search\";a:10:{i:0;s:7:\"bicycle\";i:1;s:4:\"bike\";i:2;s:6:\"biking\";i:3;s:7:\"cyclist\";i:4;s:5:\"pedal\";i:5;s:13:\"person biking\";i:6;s:6:\"summer\";i:7;s:3:\"uer\";i:8;s:5:\"wheel\";i:9;s:13:\"person-biking\";}}s:19:\"fas fa-person-booth\";a:2:{s:5:\"label\";s:12:\"Person Booth\";s:6:\"search\";a:7:{i:0;s:13:\"changing room\";i:1;s:7:\"curtain\";i:2;s:3:\"uer\";i:3;s:4:\"vote\";i:4;s:6:\"voting\";i:5;s:12:\"person-booth\";i:6;s:12:\"person booth\";}}s:27:\"fas fa-person-breastfeeding\";a:2:{s:5:\"label\";s:20:\"Person Breastfeeding\";s:6:\"search\";a:10:{i:0;s:4:\"baby\";i:1;s:5:\"child\";i:2;s:6:\"infant\";i:3;s:6:\"mother\";i:4;s:9:\"nutrition\";i:5;s:6:\"parent\";i:6;s:10:\"sustenance\";i:7;s:3:\"uer\";i:8;s:20:\"person-breastfeeding\";i:9;s:20:\"person breastfeeding\";}}s:19:\"fas fa-person-burst\";a:2:{s:5:\"label\";s:12:\"Person Burst\";s:6:\"search\";a:8:{i:0;s:5:\"abuse\";i:1;s:8:\"accident\";i:2;s:5:\"crash\";i:3;s:7:\"explode\";i:4;s:3:\"uer\";i:5;s:8:\"violence\";i:6;s:12:\"person-burst\";i:7;s:12:\"person burst\";}}s:18:\"fas fa-person-cane\";a:2:{s:5:\"label\";s:11:\"Person Cane\";s:6:\"search\";a:8:{i:0;s:5:\"aging\";i:1;s:4:\"cane\";i:2;s:7:\"elderly\";i:3;s:3:\"old\";i:4;s:5:\"staff\";i:5;s:3:\"uer\";i:6;s:11:\"person-cane\";i:7;s:11:\"person cane\";}}s:24:\"fas fa-person-chalkboard\";a:2:{s:5:\"label\";s:17:\"Person Chalkboard\";s:6:\"search\";a:9:{i:0;s:10:\"blackboard\";i:1;s:10:\"instructor\";i:2;s:7:\"keynote\";i:3;s:6:\"lesson\";i:4;s:12:\"presentation\";i:5;s:7:\"teacher\";i:6;s:3:\"uer\";i:7;s:17:\"person-chalkboard\";i:8;s:17:\"person chalkboard\";}}s:26:\"fas fa-person-circle-check\";a:2:{s:5:\"label\";s:19:\"Person Circle Check\";s:6:\"search\";a:10:{i:0;s:8:\"approved\";i:1;s:6:\"enable\";i:2;s:12:\"not affected\";i:3;s:2:\"ok\";i:4;s:4:\"okay\";i:5;s:3:\"uer\";i:6;s:8:\"validate\";i:7;s:7:\"working\";i:8;s:19:\"person-circle-check\";i:9;s:19:\"person circle check\";}}s:32:\"fas fa-person-circle-exclamation\";a:2:{s:5:\"label\";s:25:\"Person Circle Exclamation\";s:6:\"search\";a:8:{i:0;s:8:\"affected\";i:1;s:5:\"alert\";i:2;s:6:\"failed\";i:3;s:4:\"lost\";i:4;s:7:\"missing\";i:5;s:3:\"uer\";i:6;s:25:\"person-circle-exclamation\";i:7;s:25:\"person circle exclamation\";}}s:26:\"fas fa-person-circle-minus\";a:2:{s:5:\"label\";s:19:\"Person Circle Minus\";s:6:\"search\";a:5:{i:0;s:6:\"delete\";i:1;s:6:\"remove\";i:2;s:3:\"uer\";i:3;s:19:\"person-circle-minus\";i:4;s:19:\"person circle minus\";}}s:25:\"fas fa-person-circle-plus\";a:2:{s:5:\"label\";s:18:\"Person Circle Plus\";s:6:\"search\";a:6:{i:0;s:3:\"add\";i:1;s:6:\"follow\";i:2;s:5:\"found\";i:3;s:3:\"uer\";i:4;s:18:\"person-circle-plus\";i:5;s:18:\"person circle plus\";}}s:29:\"fas fa-person-circle-question\";a:2:{s:5:\"label\";s:22:\"Person Circle Question\";s:6:\"search\";a:7:{i:0;s:3:\"faq\";i:1;s:4:\"lost\";i:2;s:7:\"missing\";i:3;s:7:\"request\";i:4;s:3:\"uer\";i:5;s:22:\"person-circle-question\";i:6;s:22:\"person circle question\";}}s:26:\"fas fa-person-circle-xmark\";a:2:{s:5:\"label\";s:19:\"Person Circle Xmark\";s:6:\"search\";a:6:{i:0;s:4:\"dead\";i:1;s:7:\"removed\";i:2;s:3:\"uer\";i:3;s:7:\"uncheck\";i:4;s:19:\"person-circle-xmark\";i:5;s:19:\"person circle xmark\";}}s:21:\"fas fa-person-digging\";a:2:{s:5:\"label\";s:14:\"Person Digging\";s:6:\"search\";a:9:{i:0;s:4:\"bury\";i:1;s:12:\"construction\";i:2;s:6:\"debris\";i:3;s:3:\"dig\";i:4;s:11:\"maintenance\";i:5;s:11:\"men at work\";i:6;s:3:\"uer\";i:7;s:14:\"person-digging\";i:8;s:14:\"person digging\";}}s:28:\"fas fa-person-dots-from-line\";a:2:{s:5:\"label\";s:21:\"Person Dots From Line\";s:6:\"search\";a:5:{i:0;s:7:\"allergy\";i:1;s:9:\"diagnosis\";i:2;s:3:\"uer\";i:3;s:21:\"person-dots-from-line\";i:4;s:21:\"person dots from line\";}}s:19:\"fas fa-person-dress\";a:2:{s:5:\"label\";s:12:\"Person Dress\";s:6:\"search\";a:6:{i:0;s:3:\"man\";i:1;s:5:\"skirt\";i:2;s:3:\"uer\";i:3;s:5:\"woman\";i:4;s:12:\"person-dress\";i:5;s:12:\"person dress\";}}s:25:\"fas fa-person-dress-burst\";a:2:{s:5:\"label\";s:18:\"Person Dress Burst\";s:6:\"search\";a:8:{i:0;s:5:\"abuse\";i:1;s:8:\"accident\";i:2;s:5:\"crash\";i:3;s:7:\"explode\";i:4;s:3:\"uer\";i:5;s:8:\"violence\";i:6;s:18:\"person-dress-burst\";i:7;s:18:\"person dress burst\";}}s:22:\"fas fa-person-drowning\";a:2:{s:5:\"label\";s:15:\"Person Drowning\";s:6:\"search\";a:6:{i:0;s:5:\"drown\";i:1;s:9:\"emergency\";i:2;s:4:\"swim\";i:3;s:3:\"uer\";i:4;s:15:\"person-drowning\";i:5;s:15:\"person drowning\";}}s:21:\"fas fa-person-falling\";a:2:{s:5:\"label\";s:14:\"Person Falling\";s:6:\"search\";a:6:{i:0;s:8:\"accident\";i:1;s:4:\"fall\";i:2;s:4:\"trip\";i:3;s:3:\"uer\";i:4;s:14:\"person-falling\";i:5;s:14:\"person falling\";}}s:27:\"fas fa-person-falling-burst\";a:2:{s:5:\"label\";s:20:\"Person Falling Burst\";s:6:\"search\";a:9:{i:0;s:8:\"accident\";i:1;s:5:\"crash\";i:2;s:5:\"death\";i:3;s:4:\"fall\";i:4;s:8:\"homicide\";i:5;s:6:\"murder\";i:6;s:3:\"uer\";i:7;s:20:\"person-falling-burst\";i:8;s:20:\"person falling burst\";}}s:24:\"fas fa-person-half-dress\";a:2:{s:5:\"label\";s:17:\"Person Half Dress\";s:6:\"search\";a:8:{i:0;s:6:\"gender\";i:1;s:3:\"man\";i:2;s:8:\"restroom\";i:3;s:11:\"transgender\";i:4;s:3:\"uer\";i:5;s:5:\"woman\";i:6;s:17:\"person-half-dress\";i:7;s:17:\"person half dress\";}}s:23:\"fas fa-person-harassing\";a:2:{s:5:\"label\";s:16:\"Person Harassing\";s:6:\"search\";a:8:{i:0;s:5:\"abuse\";i:1;s:6:\"scream\";i:2;s:5:\"shame\";i:3;s:5:\"shout\";i:4;s:3:\"uer\";i:5;s:4:\"yell\";i:6;s:16:\"person-harassing\";i:7;s:16:\"person harassing\";}}s:20:\"fas fa-person-hiking\";a:2:{s:5:\"label\";s:13:\"Person Hiking\";s:6:\"search\";a:11:{i:0;s:6:\"autumn\";i:1;s:4:\"fall\";i:2;s:6:\"follow\";i:3;s:4:\"hike\";i:4;s:8:\"mountain\";i:5;s:8:\"outdoors\";i:6;s:6:\"summer\";i:7;s:3:\"uer\";i:8;s:4:\"walk\";i:9;s:13:\"person-hiking\";i:10;s:13:\"person hiking\";}}s:31:\"fas fa-person-military-pointing\";a:2:{s:5:\"label\";s:24:\"Person Military Pointing\";s:6:\"search\";a:6:{i:0;s:4:\"army\";i:1;s:7:\"customs\";i:2;s:5:\"guard\";i:3;s:3:\"uer\";i:4;s:24:\"person-military-pointing\";i:5;s:24:\"person military pointing\";}}s:28:\"fas fa-person-military-rifle\";a:2:{s:5:\"label\";s:21:\"Person Military Rifle\";s:6:\"search\";a:8:{i:0;s:12:\"armed forces\";i:1;s:4:\"army\";i:2;s:8:\"military\";i:3;s:5:\"rifle\";i:4;s:3:\"uer\";i:5;s:3:\"war\";i:6;s:21:\"person-military-rifle\";i:7;s:21:\"person military rifle\";}}s:32:\"fas fa-person-military-to-person\";a:2:{s:5:\"label\";s:25:\"Person Military To Person\";s:6:\"search\";a:6:{i:0;s:8:\"civilian\";i:1;s:12:\"coordination\";i:2;s:8:\"military\";i:3;s:3:\"uer\";i:4;s:25:\"person-military-to-person\";i:5;s:25:\"person military to person\";}}s:21:\"fas fa-person-praying\";a:2:{s:5:\"label\";s:14:\"Person Praying\";s:6:\"search\";a:8:{i:0;s:5:\"kneel\";i:1;s:16:\"place of worship\";i:2;s:8:\"religion\";i:3;s:5:\"thank\";i:4;s:3:\"uer\";i:5;s:7:\"worship\";i:6;s:14:\"person-praying\";i:7;s:14:\"person praying\";}}s:22:\"fas fa-person-pregnant\";a:2:{s:5:\"label\";s:15:\"Person Pregnant\";s:6:\"search\";a:10:{i:0;s:4:\"baby\";i:1;s:5:\"birth\";i:2;s:5:\"child\";i:3;s:6:\"parent\";i:4;s:8:\"pregnant\";i:5;s:14:\"pregnant woman\";i:6;s:3:\"uer\";i:7;s:5:\"woman\";i:8;s:15:\"person-pregnant\";i:9;s:15:\"person pregnant\";}}s:18:\"fas fa-person-rays\";a:2:{s:5:\"label\";s:11:\"Person Rays\";s:6:\"search\";a:6:{i:0;s:8:\"affected\";i:1;s:5:\"focus\";i:2;s:5:\"shine\";i:3;s:3:\"uer\";i:4;s:11:\"person-rays\";i:5;s:11:\"person rays\";}}s:19:\"fas fa-person-rifle\";a:2:{s:5:\"label\";s:12:\"Person Rifle\";s:6:\"search\";a:9:{i:0;s:4:\"army\";i:1;s:9:\"combatant\";i:2;s:3:\"gun\";i:3;s:8:\"military\";i:4;s:5:\"rifle\";i:5;s:3:\"uer\";i:6;s:3:\"war\";i:7;s:12:\"person-rifle\";i:8;s:12:\"person rifle\";}}s:21:\"fas fa-person-running\";a:2:{s:5:\"label\";s:14:\"Person Running\";s:6:\"search\";a:10:{i:0;s:4:\"exit\";i:1;s:4:\"flee\";i:2;s:6:\"follow\";i:3;s:8:\"marathon\";i:4;s:14:\"person running\";i:5;s:4:\"race\";i:6;s:7:\"running\";i:7;s:3:\"uer\";i:8;s:7:\"workout\";i:9;s:14:\"person-running\";}}s:21:\"fas fa-person-shelter\";a:2:{s:5:\"label\";s:14:\"Person Shelter\";s:6:\"search\";a:9:{i:0;s:5:\"house\";i:1;s:6:\"inside\";i:2;s:4:\"roof\";i:3;s:4:\"safe\";i:4;s:6:\"safety\";i:5;s:7:\"shelter\";i:6;s:3:\"uer\";i:7;s:14:\"person-shelter\";i:8;s:14:\"person shelter\";}}s:21:\"fas fa-person-skating\";a:2:{s:5:\"label\";s:14:\"Person Skating\";s:6:\"search\";a:9:{i:0;s:14:\"figure skating\";i:1;s:3:\"ice\";i:2;s:8:\"olympics\";i:3;s:4:\"rink\";i:4;s:5:\"skate\";i:5;s:3:\"uer\";i:6;s:6:\"winter\";i:7;s:14:\"person-skating\";i:8;s:14:\"person skating\";}}s:20:\"fas fa-person-skiing\";a:2:{s:5:\"label\";s:13:\"Person Skiing\";s:6:\"search\";a:9:{i:0;s:8:\"downhill\";i:1;s:8:\"olympics\";i:2;s:3:\"ski\";i:3;s:5:\"skier\";i:4;s:4:\"snow\";i:5;s:3:\"uer\";i:6;s:6:\"winter\";i:7;s:13:\"person-skiing\";i:8;s:13:\"person skiing\";}}s:27:\"fas fa-person-skiing-nordic\";a:2:{s:5:\"label\";s:20:\"Person Skiing Nordic\";s:6:\"search\";a:6:{i:0;s:13:\"cross country\";i:1;s:8:\"olympics\";i:2;s:3:\"uer\";i:3;s:6:\"winter\";i:4;s:20:\"person-skiing-nordic\";i:5;s:20:\"person skiing nordic\";}}s:26:\"fas fa-person-snowboarding\";a:2:{s:5:\"label\";s:19:\"Person Snowboarding\";s:6:\"search\";a:9:{i:0;s:8:\"olympics\";i:1;s:3:\"ski\";i:2;s:4:\"snow\";i:3;s:9:\"snowboard\";i:4;s:11:\"snowboarder\";i:5;s:3:\"uer\";i:6;s:6:\"winter\";i:7;s:19:\"person-snowboarding\";i:8;s:19:\"person snowboarding\";}}s:22:\"fas fa-person-swimming\";a:2:{s:5:\"label\";s:15:\"Person Swimming\";s:6:\"search\";a:8:{i:0;s:5:\"ocean\";i:1;s:15:\"person swimming\";i:2;s:4:\"pool\";i:3;s:3:\"sea\";i:4;s:4:\"swim\";i:5;s:3:\"uer\";i:6;s:5:\"water\";i:7;s:15:\"person-swimming\";}}s:28:\"fas fa-person-through-window\";a:2:{s:5:\"label\";s:21:\"Person Through Window\";s:6:\"search\";a:10:{i:0;s:4:\"door\";i:1;s:4:\"exit\";i:2;s:12:\"forced entry\";i:3;s:5:\"leave\";i:4;s:7:\"robbery\";i:5;s:5:\"steal\";i:6;s:3:\"uer\";i:7;s:6:\"window\";i:8;s:21:\"person-through-window\";i:9;s:21:\"person through window\";}}s:21:\"fas fa-person-walking\";a:2:{s:5:\"label\";s:14:\"Person Walking\";s:6:\"search\";a:11:{i:0;s:9:\"crosswalk\";i:1;s:8:\"exercise\";i:2;s:6:\"follow\";i:3;s:4:\"hike\";i:4;s:4:\"move\";i:5;s:14:\"person walking\";i:6;s:3:\"uer\";i:7;s:4:\"walk\";i:8;s:7:\"walking\";i:9;s:7:\"workout\";i:10;s:14:\"person-walking\";}}s:37:\"fas fa-person-walking-arrow-loop-left\";a:2:{s:5:\"label\";s:30:\"Person Walking Arrow Loop Left\";s:6:\"search\";a:6:{i:0;s:6:\"follow\";i:1;s:17:\"population return\";i:2;s:6:\"return\";i:3;s:3:\"uer\";i:4;s:30:\"person-walking-arrow-loop-left\";i:5;s:30:\"person walking arrow loop left\";}}s:33:\"fas fa-person-walking-arrow-right\";a:2:{s:5:\"label\";s:26:\"Person Walking Arrow Right\";s:6:\"search\";a:8:{i:0;s:4:\"exit\";i:1;s:6:\"follow\";i:2;s:20:\"internally displaced\";i:3;s:5:\"leave\";i:4;s:7:\"refugee\";i:5;s:3:\"uer\";i:6;s:26:\"person-walking-arrow-right\";i:7;s:26:\"person walking arrow right\";}}s:45:\"fas fa-person-walking-dashed-line-arrow-right\";a:2:{s:5:\"label\";s:38:\"Person Walking Dashed Line Arrow Right\";s:6:\"search\";a:6:{i:0;s:4:\"exit\";i:1;s:6:\"follow\";i:2;s:7:\"refugee\";i:3;s:3:\"uer\";i:4;s:38:\"person-walking-dashed-line-arrow-right\";i:5;s:38:\"person walking dashed line arrow right\";}}s:29:\"fas fa-person-walking-luggage\";a:2:{s:5:\"label\";s:22:\"Person Walking Luggage\";s:6:\"search\";a:10:{i:0;s:3:\"bag\";i:1;s:7:\"baggage\";i:2;s:9:\"briefcase\";i:3;s:8:\"carry-on\";i:4;s:10:\"deployment\";i:5;s:6:\"follow\";i:6;s:7:\"rolling\";i:7;s:3:\"uer\";i:8;s:22:\"person-walking-luggage\";i:9;s:22:\"person walking luggage\";}}s:31:\"fas fa-person-walking-with-cane\";a:2:{s:5:\"label\";s:24:\"Person Walking With Cane\";s:6:\"search\";a:6:{i:0;s:5:\"blind\";i:1;s:4:\"cane\";i:2;s:6:\"follow\";i:3;s:3:\"uer\";i:4;s:24:\"person-walking-with-cane\";i:5;s:24:\"person walking with cane\";}}s:18:\"fas fa-peseta-sign\";a:2:{s:5:\"label\";s:11:\"Peseta Sign\";s:6:\"search\";a:4:{i:0;s:11:\"Peseta Sign\";i:1;s:8:\"currency\";i:2;s:11:\"peseta-sign\";i:3;s:11:\"peseta sign\";}}s:16:\"fas fa-peso-sign\";a:2:{s:5:\"label\";s:9:\"Peso Sign\";s:6:\"search\";a:4:{i:0;s:9:\"Peso Sign\";i:1;s:8:\"currency\";i:2;s:9:\"peso-sign\";i:3;s:9:\"peso sign\";}}s:18:\"fab fa-phabricator\";a:2:{s:5:\"label\";s:11:\"Phabricator\";s:6:\"search\";a:1:{i:0;s:11:\"phabricator\";}}s:24:\"fab fa-phoenix-framework\";a:2:{s:5:\"label\";s:17:\"Phoenix Framework\";s:6:\"search\";a:2:{i:0;s:17:\"phoenix-framework\";i:1;s:17:\"phoenix framework\";}}s:23:\"fab fa-phoenix-squadron\";a:2:{s:5:\"label\";s:16:\"Phoenix Squadron\";s:6:\"search\";a:2:{i:0;s:16:\"phoenix-squadron\";i:1;s:16:\"phoenix squadron\";}}s:12:\"fas fa-phone\";a:2:{s:5:\"label\";s:5:\"Phone\";s:6:\"search\";a:11:{i:0;s:28:\"Left Hand Telephone Receiver\";i:1;s:4:\"call\";i:2;s:8:\"earphone\";i:3;s:6:\"number\";i:4;s:5:\"phone\";i:5;s:8:\"receiver\";i:6;s:7:\"support\";i:7;s:7:\"talking\";i:8;s:9:\"telephone\";i:9;s:18:\"telephone receiver\";i:10;s:5:\"voice\";}}s:17:\"fas fa-phone-flip\";a:2:{s:5:\"label\";s:10:\"Phone Flip\";s:6:\"search\";a:9:{i:0;s:29:\"Right Hand Telephone Receiver\";i:1;s:4:\"call\";i:2;s:8:\"earphone\";i:3;s:6:\"number\";i:4;s:7:\"support\";i:5;s:9:\"telephone\";i:6;s:5:\"voice\";i:7;s:10:\"phone-flip\";i:8;s:10:\"phone flip\";}}s:18:\"fas fa-phone-slash\";a:2:{s:5:\"label\";s:11:\"Phone Slash\";s:6:\"search\";a:12:{i:0;s:4:\"call\";i:1;s:6:\"cancel\";i:2;s:8:\"disabled\";i:3;s:10:\"disconnect\";i:4;s:8:\"earphone\";i:5;s:4:\"mute\";i:6;s:6:\"number\";i:7;s:7:\"support\";i:8;s:9:\"telephone\";i:9;s:5:\"voice\";i:10;s:11:\"phone-slash\";i:11;s:11:\"phone slash\";}}s:19:\"fas fa-phone-volume\";a:2:{s:5:\"label\";s:12:\"Phone Volume\";s:6:\"search\";a:11:{i:0;s:4:\"call\";i:1;s:8:\"earphone\";i:2;s:6:\"number\";i:3;s:5:\"sound\";i:4;s:7:\"support\";i:5;s:7:\"talking\";i:6;s:9:\"telephone\";i:7;s:5:\"voice\";i:8;s:20:\"volume-control-phone\";i:9;s:12:\"phone-volume\";i:10;s:12:\"phone volume\";}}s:17:\"fas fa-photo-film\";a:2:{s:5:\"label\";s:10:\"Photo Film\";s:6:\"search\";a:7:{i:0;s:2:\"av\";i:1;s:4:\"film\";i:2;s:5:\"image\";i:3;s:7:\"library\";i:4;s:5:\"media\";i:5;s:10:\"photo-film\";i:6;s:10:\"photo film\";}}s:10:\"fab fa-php\";a:2:{s:5:\"label\";s:3:\"PHP\";s:6:\"search\";a:1:{i:0;s:3:\"php\";}}s:17:\"fab fa-pied-piper\";a:2:{s:5:\"label\";s:15:\"Pied Piper Logo\";s:6:\"search\";a:2:{i:0;s:10:\"pied-piper\";i:1;s:15:\"pied piper logo\";}}s:21:\"fab fa-pied-piper-alt\";a:2:{s:5:\"label\";s:31:\"Alternate Pied Piper Logo (Old)\";s:6:\"search\";a:2:{i:0;s:14:\"pied-piper-alt\";i:1;s:31:\"alternate pied piper logo (old)\";}}s:21:\"fab fa-pied-piper-hat\";a:2:{s:5:\"label\";s:20:\"Pied Piper Hat (Old)\";s:6:\"search\";a:3:{i:0;s:8:\"clothing\";i:1;s:14:\"pied-piper-hat\";i:2;s:20:\"pied piper hat (old)\";}}s:20:\"fab fa-pied-piper-pp\";a:2:{s:5:\"label\";s:24:\"Pied Piper PP Logo (Old)\";s:6:\"search\";a:2:{i:0;s:13:\"pied-piper-pp\";i:1;s:24:\"pied piper pp logo (old)\";}}s:17:\"fas fa-piggy-bank\";a:2:{s:5:\"label\";s:10:\"Piggy Bank\";s:6:\"search\";a:6:{i:0;s:4:\"bank\";i:1;s:6:\"salary\";i:2;s:4:\"save\";i:3;s:7:\"savings\";i:4;s:10:\"piggy-bank\";i:5;s:10:\"piggy bank\";}}s:12:\"fas fa-pills\";a:2:{s:5:\"label\";s:5:\"Pills\";s:6:\"search\";a:5:{i:0;s:5:\"drugs\";i:1;s:8:\"medicine\";i:2;s:12:\"prescription\";i:3;s:7:\"tablets\";i:4;s:5:\"pills\";}}s:16:\"fab fa-pinterest\";a:2:{s:5:\"label\";s:9:\"Pinterest\";s:6:\"search\";a:1:{i:0;s:9:\"pinterest\";}}s:18:\"fab fa-pinterest-p\";a:2:{s:5:\"label\";s:11:\"Pinterest P\";s:6:\"search\";a:2:{i:0;s:11:\"pinterest-p\";i:1;s:11:\"pinterest p\";}}s:10:\"fab fa-pix\";a:2:{s:5:\"label\";s:3:\"Pix\";s:6:\"search\";a:1:{i:0;s:3:\"pix\";}}s:12:\"fab fa-pixiv\";a:2:{s:5:\"label\";s:5:\"Pixiv\";s:6:\"search\";a:1:{i:0;s:5:\"pixiv\";}}s:18:\"fas fa-pizza-slice\";a:2:{s:5:\"label\";s:11:\"Pizza Slice\";s:6:\"search\";a:12:{i:0;s:6:\"cheese\";i:1;s:7:\"chicago\";i:2;s:7:\"italian\";i:3;s:10:\"mozzarella\";i:4;s:8:\"new york\";i:5;s:9:\"pepperoni\";i:6;s:3:\"pie\";i:7;s:5:\"slice\";i:8;s:28:\"teenage mutant ninja turtles\";i:9;s:6:\"tomato\";i:10;s:11:\"pizza-slice\";i:11;s:11:\"pizza slice\";}}s:23:\"fas fa-place-of-worship\";a:2:{s:5:\"label\";s:16:\"Place Of Worship\";s:6:\"search\";a:7:{i:0;s:8:\"building\";i:1;s:6:\"church\";i:2;s:4:\"holy\";i:3;s:6:\"mosque\";i:4;s:9:\"synagogue\";i:5;s:16:\"place-of-worship\";i:6;s:16:\"place of worship\";}}s:12:\"fas fa-plane\";a:2:{s:5:\"label\";s:5:\"Plane\";s:6:\"search\";a:9:{i:0;s:8:\"airplane\";i:1;s:7:\"airport\";i:2;s:11:\"destination\";i:3;s:3:\"fly\";i:4;s:8:\"location\";i:5;s:4:\"mode\";i:6;s:6:\"travel\";i:7;s:4:\"trip\";i:8;s:5:\"plane\";}}s:20:\"fas fa-plane-arrival\";a:2:{s:5:\"label\";s:13:\"Plane Arrival\";s:6:\"search\";a:16:{i:0;s:9:\"aeroplane\";i:1;s:8:\"airplane\";i:2;s:16:\"airplane arrival\";i:3;s:7:\"airport\";i:4;s:8:\"arrivals\";i:5;s:8:\"arriving\";i:6;s:11:\"destination\";i:7;s:3:\"fly\";i:8;s:4:\"land\";i:9;s:7:\"landing\";i:10;s:8:\"location\";i:11;s:4:\"mode\";i:12;s:6:\"travel\";i:13;s:4:\"trip\";i:14;s:13:\"plane-arrival\";i:15;s:13:\"plane arrival\";}}s:25:\"fas fa-plane-circle-check\";a:2:{s:5:\"label\";s:18:\"Plane Circle Check\";s:6:\"search\";a:13:{i:0;s:8:\"airplane\";i:1;s:7:\"airport\";i:2;s:6:\"enable\";i:3;s:6:\"flight\";i:4;s:3:\"fly\";i:5;s:12:\"not affected\";i:6;s:2:\"ok\";i:7;s:4:\"okay\";i:8;s:6:\"travel\";i:9;s:8:\"validate\";i:10;s:7:\"working\";i:11;s:18:\"plane-circle-check\";i:12;s:18:\"plane circle check\";}}s:31:\"fas fa-plane-circle-exclamation\";a:2:{s:5:\"label\";s:24:\"Plane Circle Exclamation\";s:6:\"search\";a:9:{i:0;s:8:\"affected\";i:1;s:8:\"airplane\";i:2;s:7:\"airport\";i:3;s:6:\"failed\";i:4;s:6:\"flight\";i:5;s:3:\"fly\";i:6;s:6:\"travel\";i:7;s:24:\"plane-circle-exclamation\";i:8;s:24:\"plane circle exclamation\";}}s:25:\"fas fa-plane-circle-xmark\";a:2:{s:5:\"label\";s:18:\"Plane Circle Xmark\";s:6:\"search\";a:9:{i:0;s:8:\"airplane\";i:1;s:7:\"airport\";i:2;s:7:\"destroy\";i:3;s:6:\"flight\";i:4;s:3:\"fly\";i:5;s:6:\"travel\";i:6;s:7:\"uncheck\";i:7;s:18:\"plane-circle-xmark\";i:8;s:18:\"plane circle xmark\";}}s:22:\"fas fa-plane-departure\";a:2:{s:5:\"label\";s:15:\"Plane Departure\";s:6:\"search\";a:18:{i:0;s:9:\"aeroplane\";i:1;s:8:\"airplane\";i:2;s:18:\"airplane departure\";i:3;s:7:\"airport\";i:4;s:8:\"check-in\";i:5;s:9:\"departing\";i:6;s:9:\"departure\";i:7;s:10:\"departures\";i:8;s:11:\"destination\";i:9;s:3:\"fly\";i:10;s:8:\"location\";i:11;s:4:\"mode\";i:12;s:8:\"take off\";i:13;s:10:\"taking off\";i:14;s:6:\"travel\";i:15;s:4:\"trip\";i:16;s:15:\"plane-departure\";i:17;s:15:\"plane departure\";}}s:17:\"fas fa-plane-lock\";a:2:{s:5:\"label\";s:10:\"Plane Lock\";s:6:\"search\";a:12:{i:0;s:8:\"airplane\";i:1;s:7:\"airport\";i:2;s:6:\"closed\";i:3;s:6:\"flight\";i:4;s:3:\"fly\";i:5;s:8:\"lockdown\";i:6;s:7:\"padlock\";i:7;s:7:\"privacy\";i:8;s:10:\"quarantine\";i:9;s:6:\"travel\";i:10;s:10:\"plane-lock\";i:11;s:10:\"plane lock\";}}s:18:\"fas fa-plane-slash\";a:2:{s:5:\"label\";s:11:\"Plane Slash\";s:6:\"search\";a:10:{i:0;s:13:\"airplane mode\";i:1;s:7:\"airport\";i:2;s:8:\"canceled\";i:3;s:8:\"covid-19\";i:4;s:7:\"delayed\";i:5;s:8:\"disabled\";i:6;s:8:\"grounded\";i:7;s:6:\"travel\";i:8;s:11:\"plane-slash\";i:9;s:11:\"plane slash\";}}s:15:\"fas fa-plane-up\";a:2:{s:5:\"label\";s:8:\"Plane Up\";s:6:\"search\";a:9:{i:0;s:8:\"airplane\";i:1;s:7:\"airport\";i:2;s:8:\"internet\";i:3;s:6:\"signal\";i:4;s:3:\"sky\";i:5;s:4:\"wifi\";i:6;s:8:\"wireless\";i:7;s:8:\"plane-up\";i:8;s:8:\"plane up\";}}s:17:\"fas fa-plant-wilt\";a:2:{s:5:\"label\";s:10:\"Plant Wilt\";s:6:\"search\";a:6:{i:0;s:7:\"drought\";i:1;s:8:\"planting\";i:2;s:10:\"vegetation\";i:3;s:4:\"wilt\";i:4;s:10:\"plant-wilt\";i:5;s:10:\"plant wilt\";}}s:18:\"fas fa-plate-wheat\";a:2:{s:5:\"label\";s:11:\"Plate Wheat\";s:6:\"search\";a:6:{i:0;s:4:\"bowl\";i:1;s:6:\"hunger\";i:2;s:7:\"rations\";i:3;s:5:\"wheat\";i:4;s:11:\"plate-wheat\";i:5;s:11:\"plate wheat\";}}s:11:\"fas fa-play\";a:2:{s:5:\"label\";s:4:\"Play\";s:6:\"search\";a:11:{i:0;s:5:\"arrow\";i:1;s:5:\"audio\";i:2;s:5:\"music\";i:3;s:4:\"play\";i:4;s:11:\"play button\";i:5;s:7:\"playing\";i:6;s:5:\"right\";i:7;s:5:\"sound\";i:8;s:5:\"start\";i:9;s:8:\"triangle\";i:10;s:5:\"video\";}}s:18:\"fab fa-playstation\";a:2:{s:5:\"label\";s:11:\"PlayStation\";s:6:\"search\";a:1:{i:0;s:11:\"playstation\";}}s:11:\"fas fa-plug\";a:2:{s:5:\"label\";s:4:\"Plug\";s:6:\"search\";a:7:{i:0;s:7:\"connect\";i:1;s:8:\"electric\";i:2;s:13:\"electric plug\";i:3;s:11:\"electricity\";i:4;s:6:\"online\";i:5;s:4:\"plug\";i:6;s:5:\"power\";}}s:23:\"fas fa-plug-circle-bolt\";a:2:{s:5:\"label\";s:16:\"Plug Circle Bolt\";s:6:\"search\";a:6:{i:0;s:8:\"electric\";i:1;s:11:\"electricity\";i:2;s:4:\"plug\";i:3;s:5:\"power\";i:4;s:16:\"plug-circle-bolt\";i:5;s:16:\"plug circle bolt\";}}s:24:\"fas fa-plug-circle-check\";a:2:{s:5:\"label\";s:17:\"Plug Circle Check\";s:6:\"search\";a:12:{i:0;s:8:\"electric\";i:1;s:11:\"electricity\";i:2;s:6:\"enable\";i:3;s:12:\"not affected\";i:4;s:2:\"ok\";i:5;s:4:\"okay\";i:6;s:4:\"plug\";i:7;s:5:\"power\";i:8;s:8:\"validate\";i:9;s:7:\"working\";i:10;s:17:\"plug-circle-check\";i:11;s:17:\"plug circle check\";}}s:30:\"fas fa-plug-circle-exclamation\";a:2:{s:5:\"label\";s:23:\"Plug Circle Exclamation\";s:6:\"search\";a:8:{i:0;s:8:\"affected\";i:1;s:8:\"electric\";i:2;s:11:\"electricity\";i:3;s:6:\"failed\";i:4;s:4:\"plug\";i:5;s:5:\"power\";i:6;s:23:\"plug-circle-exclamation\";i:7;s:23:\"plug circle exclamation\";}}s:24:\"fas fa-plug-circle-minus\";a:2:{s:5:\"label\";s:17:\"Plug Circle Minus\";s:6:\"search\";a:7:{i:0;s:10:\"disconnect\";i:1;s:8:\"electric\";i:2;s:11:\"electricity\";i:3;s:4:\"plug\";i:4;s:5:\"power\";i:5;s:17:\"plug-circle-minus\";i:6;s:17:\"plug circle minus\";}}s:23:\"fas fa-plug-circle-plus\";a:2:{s:5:\"label\";s:16:\"Plug Circle Plus\";s:6:\"search\";a:6:{i:0;s:8:\"electric\";i:1;s:11:\"electricity\";i:2;s:4:\"plug\";i:3;s:5:\"power\";i:4;s:16:\"plug-circle-plus\";i:5;s:16:\"plug circle plus\";}}s:24:\"fas fa-plug-circle-xmark\";a:2:{s:5:\"label\";s:17:\"Plug Circle Xmark\";s:6:\"search\";a:10:{i:0;s:7:\"destroy\";i:1;s:10:\"disconnect\";i:2;s:8:\"electric\";i:3;s:11:\"electricity\";i:4;s:6:\"outage\";i:5;s:4:\"plug\";i:6;s:5:\"power\";i:7;s:7:\"uncheck\";i:8;s:17:\"plug-circle-xmark\";i:9;s:17:\"plug circle xmark\";}}s:11:\"fas fa-plus\";a:2:{s:5:\"label\";s:4:\"Plus\";s:6:\"search\";a:13:{i:0;s:1:\"+\";i:1;s:9:\"Plus Sign\";i:2;s:3:\"add\";i:3;s:6:\"create\";i:4;s:6:\"expand\";i:5;s:6:\"follow\";i:6;s:4:\"math\";i:7;s:6:\"modify\";i:8;s:3:\"new\";i:9;s:4:\"plus\";i:10;s:8:\"positive\";i:11;s:5:\"shape\";i:12;s:4:\"sign\";}}s:17:\"fas fa-plus-minus\";a:2:{s:5:\"label\";s:10:\"Plus Minus\";s:6:\"search\";a:6:{i:0;s:15:\"Plus-Minus Sign\";i:1;s:3:\"add\";i:2;s:4:\"math\";i:3;s:8:\"subtract\";i:4;s:10:\"plus-minus\";i:5;s:10:\"plus minus\";}}s:14:\"fas fa-podcast\";a:2:{s:5:\"label\";s:7:\"Podcast\";s:6:\"search\";a:5:{i:0;s:5:\"audio\";i:1;s:9:\"broadcast\";i:2;s:5:\"music\";i:3;s:5:\"sound\";i:4;s:7:\"podcast\";}}s:10:\"fas fa-poo\";a:2:{s:5:\"label\";s:3:\"Poo\";s:6:\"search\";a:11:{i:0;s:4:\"crap\";i:1;s:4:\"dung\";i:2;s:4:\"face\";i:3;s:7:\"monster\";i:4;s:11:\"pile of poo\";i:5;s:3:\"poo\";i:6;s:4:\"poop\";i:7;s:4:\"shit\";i:8;s:5:\"smile\";i:9;s:4:\"turd\";i:10;s:3:\"uer\";}}s:16:\"fas fa-poo-storm\";a:2:{s:5:\"label\";s:9:\"Poo Storm\";s:6:\"search\";a:10:{i:0;s:4:\"bolt\";i:1;s:5:\"cloud\";i:2;s:9:\"euphemism\";i:3;s:9:\"lightning\";i:4;s:4:\"mess\";i:5;s:4:\"poop\";i:6;s:4:\"shit\";i:7;s:4:\"turd\";i:8;s:9:\"poo-storm\";i:9;s:9:\"poo storm\";}}s:11:\"fas fa-poop\";a:2:{s:5:\"label\";s:4:\"Poop\";s:6:\"search\";a:5:{i:0;s:4:\"crap\";i:1;s:4:\"poop\";i:2;s:4:\"shit\";i:3;s:5:\"smile\";i:4;s:4:\"turd\";}}s:16:\"fas fa-power-off\";a:2:{s:5:\"label\";s:9:\"Power Off\";s:6:\"search\";a:8:{i:0;s:12:\"Power Symbol\";i:1;s:6:\"cancel\";i:2;s:8:\"computer\";i:3;s:2:\"on\";i:4;s:6:\"reboot\";i:5;s:7:\"restart\";i:6;s:9:\"power-off\";i:7;s:9:\"power off\";}}s:19:\"fas fa-prescription\";a:2:{s:5:\"label\";s:12:\"Prescription\";s:6:\"search\";a:6:{i:0;s:5:\"drugs\";i:1;s:7:\"medical\";i:2;s:8:\"medicine\";i:3;s:8:\"pharmacy\";i:4;s:2:\"rx\";i:5;s:12:\"prescription\";}}s:26:\"fas fa-prescription-bottle\";a:2:{s:5:\"label\";s:19:\"Prescription Bottle\";s:6:\"search\";a:7:{i:0;s:5:\"drugs\";i:1;s:7:\"medical\";i:2;s:8:\"medicine\";i:3;s:8:\"pharmacy\";i:4;s:2:\"rx\";i:5;s:19:\"prescription-bottle\";i:6;s:19:\"prescription bottle\";}}s:34:\"fas fa-prescription-bottle-medical\";a:2:{s:5:\"label\";s:27:\"Prescription Bottle Medical\";s:6:\"search\";a:7:{i:0;s:5:\"drugs\";i:1;s:7:\"medical\";i:2;s:8:\"medicine\";i:3;s:8:\"pharmacy\";i:4;s:2:\"rx\";i:5;s:27:\"prescription-bottle-medical\";i:6;s:27:\"prescription bottle medical\";}}s:12:\"fas fa-print\";a:2:{s:5:\"label\";s:5:\"Print\";s:6:\"search\";a:10:{i:0;s:19:\"Print Screen Symbol\";i:1;s:12:\"Printer Icon\";i:2;s:8:\"business\";i:3;s:8:\"computer\";i:4;s:4:\"copy\";i:5;s:8:\"document\";i:6;s:6:\"office\";i:7;s:5:\"paper\";i:8;s:7:\"printer\";i:9;s:5:\"print\";}}s:19:\"fab fa-product-hunt\";a:2:{s:5:\"label\";s:12:\"Product Hunt\";s:6:\"search\";a:2:{i:0;s:12:\"product-hunt\";i:1;s:12:\"product hunt\";}}s:19:\"fas fa-pump-medical\";a:2:{s:5:\"label\";s:12:\"Pump Medical\";s:6:\"search\";a:10:{i:0;s:14:\"anti-bacterial\";i:1;s:5:\"clean\";i:2;s:8:\"covid-19\";i:3;s:9:\"disinfect\";i:4;s:7:\"hygiene\";i:5;s:13:\"medical grade\";i:6;s:9:\"sanitizer\";i:7;s:4:\"soap\";i:8;s:12:\"pump-medical\";i:9;s:12:\"pump medical\";}}s:16:\"fas fa-pump-soap\";a:2:{s:5:\"label\";s:9:\"Pump Soap\";s:6:\"search\";a:9:{i:0;s:14:\"anti-bacterial\";i:1;s:5:\"clean\";i:2;s:8:\"covid-19\";i:3;s:9:\"disinfect\";i:4;s:7:\"hygiene\";i:5;s:9:\"sanitizer\";i:6;s:4:\"soap\";i:7;s:9:\"pump-soap\";i:8;s:9:\"pump soap\";}}s:13:\"fab fa-pushed\";a:2:{s:5:\"label\";s:6:\"Pushed\";s:6:\"search\";a:1:{i:0;s:6:\"pushed\";}}s:19:\"fas fa-puzzle-piece\";a:2:{s:5:\"label\";s:12:\"Puzzle Piece\";s:6:\"search\";a:11:{i:0;s:6:\"add-on\";i:1;s:5:\"addon\";i:2;s:4:\"clue\";i:3;s:4:\"game\";i:4;s:12:\"interlocking\";i:5;s:6:\"jigsaw\";i:6;s:5:\"piece\";i:7;s:6:\"puzzle\";i:8;s:12:\"puzzle piece\";i:9;s:7:\"section\";i:10;s:12:\"puzzle-piece\";}}s:13:\"fab fa-python\";a:2:{s:5:\"label\";s:6:\"Python\";s:6:\"search\";a:1:{i:0;s:6:\"python\";}}s:8:\"fas fa-q\";a:2:{s:5:\"label\";s:1:\"Q\";s:6:\"search\";a:4:{i:0;s:22:\"Latin Capital Letter Q\";i:1;s:20:\"Latin Small Letter Q\";i:2;s:6:\"letter\";i:3;s:1:\"q\";}}s:9:\"fab fa-qq\";a:2:{s:5:\"label\";s:2:\"QQ\";s:6:\"search\";a:1:{i:0;s:2:\"qq\";}}s:13:\"fas fa-qrcode\";a:2:{s:5:\"label\";s:6:\"Qrcode\";s:6:\"search\";a:5:{i:0;s:7:\"barcode\";i:1;s:4:\"info\";i:2;s:11:\"information\";i:3;s:4:\"scan\";i:4;s:6:\"qrcode\";}}s:15:\"fas fa-question\";a:2:{s:5:\"label\";s:8:\"Question\";s:6:\"search\";a:14:{i:0;s:1:\"?\";i:1;s:13:\"Question Mark\";i:2;s:3:\"faq\";i:3;s:4:\"help\";i:4;s:11:\"information\";i:5;s:4:\"mark\";i:6;s:8:\"outlined\";i:7;s:11:\"punctuation\";i:8;s:8:\"question\";i:9;s:17:\"red question mark\";i:10;s:7:\"request\";i:11;s:7:\"support\";i:12;s:7:\"unknown\";i:13;s:19:\"white question mark\";}}s:16:\"fab fa-quinscape\";a:2:{s:5:\"label\";s:9:\"QuinScape\";s:6:\"search\";a:1:{i:0;s:9:\"quinscape\";}}s:12:\"fab fa-quora\";a:2:{s:5:\"label\";s:5:\"Quora\";s:6:\"search\";a:1:{i:0;s:5:\"quora\";}}s:17:\"fas fa-quote-left\";a:2:{s:5:\"label\";s:10:\"Quote Left\";s:6:\"search\";a:8:{i:0;s:26:\"Left Double Quotation Mark\";i:1;s:7:\"mention\";i:2;s:4:\"note\";i:3;s:6:\"phrase\";i:4;s:4:\"text\";i:5;s:4:\"type\";i:6;s:10:\"quote-left\";i:7;s:10:\"quote left\";}}s:18:\"fas fa-quote-right\";a:2:{s:5:\"label\";s:11:\"Quote Right\";s:6:\"search\";a:8:{i:0;s:27:\"Right Double Quotation Mark\";i:1;s:7:\"mention\";i:2;s:4:\"note\";i:3;s:6:\"phrase\";i:4;s:4:\"text\";i:5;s:4:\"type\";i:6;s:11:\"quote-right\";i:7;s:11:\"quote right\";}}s:8:\"fas fa-r\";a:2:{s:5:\"label\";s:1:\"R\";s:6:\"search\";a:4:{i:0;s:22:\"Latin Capital Letter R\";i:1;s:20:\"Latin Small Letter R\";i:2;s:6:\"letter\";i:3;s:1:\"r\";}}s:16:\"fab fa-r-project\";a:2:{s:5:\"label\";s:9:\"R Project\";s:6:\"search\";a:2:{i:0;s:9:\"r-project\";i:1;s:9:\"r project\";}}s:16:\"fas fa-radiation\";a:2:{s:5:\"label\";s:9:\"Radiation\";s:6:\"search\";a:8:{i:0;s:6:\"danger\";i:1;s:9:\"dangerous\";i:2;s:6:\"deadly\";i:3;s:6:\"hazard\";i:4;s:7:\"nuclear\";i:5;s:11:\"radioactive\";i:6;s:7:\"warning\";i:7;s:9:\"radiation\";}}s:12:\"fas fa-radio\";a:2:{s:5:\"label\";s:5:\"Radio\";s:6:\"search\";a:11:{i:0;s:2:\"am\";i:1;s:9:\"broadcast\";i:2;s:2:\"fm\";i:3;s:9:\"frequency\";i:4;s:5:\"music\";i:5;s:4:\"news\";i:6;s:5:\"radio\";i:7;s:8:\"receiver\";i:8;s:11:\"transmitter\";i:9;s:5:\"tuner\";i:10;s:5:\"video\";}}s:14:\"fas fa-rainbow\";a:2:{s:5:\"label\";s:7:\"Rainbow\";s:6:\"search\";a:6:{i:0;s:4:\"gold\";i:1;s:10:\"leprechaun\";i:2;s:5:\"prism\";i:3;s:4:\"rain\";i:4;s:7:\"rainbow\";i:5;s:3:\"sky\";}}s:19:\"fas fa-ranking-star\";a:2:{s:5:\"label\";s:12:\"Ranking Star\";s:6:\"search\";a:9:{i:0;s:5:\"chart\";i:1;s:11:\"first place\";i:2;s:6:\"podium\";i:3;s:7:\"quality\";i:4;s:4:\"rank\";i:5;s:7:\"revenue\";i:6;s:3:\"win\";i:7;s:12:\"ranking-star\";i:8;s:12:\"ranking star\";}}s:19:\"fab fa-raspberry-pi\";a:2:{s:5:\"label\";s:12:\"Raspberry Pi\";s:6:\"search\";a:2:{i:0;s:12:\"raspberry-pi\";i:1;s:12:\"raspberry pi\";}}s:14:\"fab fa-ravelry\";a:2:{s:5:\"label\";s:7:\"Ravelry\";s:6:\"search\";a:1:{i:0;s:7:\"ravelry\";}}s:12:\"fab fa-react\";a:2:{s:5:\"label\";s:5:\"React\";s:6:\"search\";a:1:{i:0;s:5:\"react\";}}s:18:\"fab fa-reacteurope\";a:2:{s:5:\"label\";s:11:\"ReactEurope\";s:6:\"search\";a:1:{i:0;s:11:\"reacteurope\";}}s:13:\"fab fa-readme\";a:2:{s:5:\"label\";s:6:\"ReadMe\";s:6:\"search\";a:1:{i:0;s:6:\"readme\";}}s:12:\"fab fa-rebel\";a:2:{s:5:\"label\";s:14:\"Rebel Alliance\";s:6:\"search\";a:2:{i:0;s:5:\"rebel\";i:1;s:14:\"rebel alliance\";}}s:14:\"fas fa-receipt\";a:2:{s:5:\"label\";s:7:\"Receipt\";s:6:\"search\";a:11:{i:0;s:10:\"accounting\";i:1;s:11:\"bookkeeping\";i:2;s:5:\"check\";i:3;s:6:\"coupon\";i:4;s:8:\"evidence\";i:5;s:7:\"invoice\";i:6;s:5:\"money\";i:7;s:3:\"pay\";i:8;s:5:\"proof\";i:9;s:7:\"receipt\";i:10;s:5:\"table\";}}s:19:\"fas fa-record-vinyl\";a:2:{s:5:\"label\";s:12:\"Record Vinyl\";s:6:\"search\";a:8:{i:0;s:2:\"LP\";i:1;s:5:\"album\";i:2;s:6:\"analog\";i:3;s:5:\"music\";i:4;s:10:\"phonograph\";i:5;s:5:\"sound\";i:6;s:12:\"record-vinyl\";i:7;s:12:\"record vinyl\";}}s:19:\"fas fa-rectangle-ad\";a:2:{s:5:\"label\";s:12:\"Rectangle Ad\";s:6:\"search\";a:7:{i:0;s:13:\"advertisement\";i:1;s:5:\"media\";i:2;s:9:\"newspaper\";i:3;s:9:\"promotion\";i:4;s:9:\"publicity\";i:5;s:12:\"rectangle-ad\";i:6;s:12:\"rectangle ad\";}}s:21:\"fas fa-rectangle-list\";a:2:{s:5:\"label\";s:22:\"Rectangle List (solid)\";s:6:\"search\";a:11:{i:0;s:10:\"cheatsheet\";i:1;s:9:\"checklist\";i:2;s:9:\"completed\";i:3;s:4:\"done\";i:4;s:8:\"finished\";i:5;s:2:\"ol\";i:6;s:7:\"summary\";i:7;s:4:\"todo\";i:8;s:2:\"ul\";i:9;s:14:\"rectangle-list\";i:10;s:14:\"rectangle list\";}}s:21:\"far fa-rectangle-list\";a:2:{s:5:\"label\";s:24:\"Rectangle List (regular)\";s:6:\"search\";a:11:{i:0;s:10:\"cheatsheet\";i:1;s:9:\"checklist\";i:2;s:9:\"completed\";i:3;s:4:\"done\";i:4;s:8:\"finished\";i:5;s:2:\"ol\";i:6;s:7:\"summary\";i:7;s:4:\"todo\";i:8;s:2:\"ul\";i:9;s:14:\"rectangle-list\";i:10;s:14:\"rectangle list\";}}s:22:\"fas fa-rectangle-xmark\";a:2:{s:5:\"label\";s:23:\"Rectangle Xmark (solid)\";s:6:\"search\";a:7:{i:0;s:7:\"browser\";i:1;s:6:\"cancel\";i:2;s:8:\"computer\";i:3;s:11:\"development\";i:4;s:7:\"uncheck\";i:5;s:15:\"rectangle-xmark\";i:6;s:15:\"rectangle xmark\";}}s:22:\"far fa-rectangle-xmark\";a:2:{s:5:\"label\";s:25:\"Rectangle Xmark (regular)\";s:6:\"search\";a:7:{i:0;s:7:\"browser\";i:1;s:6:\"cancel\";i:2;s:8:\"computer\";i:3;s:11:\"development\";i:4;s:7:\"uncheck\";i:5;s:15:\"rectangle-xmark\";i:6;s:15:\"rectangle xmark\";}}s:14:\"fas fa-recycle\";a:2:{s:5:\"label\";s:7:\"Recycle\";s:6:\"search\";a:9:{i:0;s:38:\"Recycling Symbol For Generic Materials\";i:1;s:26:\"Universal Recycling Symbol\";i:2;s:5:\"Waste\";i:3;s:7:\"compost\";i:4;s:7:\"garbage\";i:5;s:7:\"recycle\";i:6;s:16:\"recycling symbol\";i:7;s:5:\"reuse\";i:8;s:5:\"trash\";}}s:16:\"fab fa-red-river\";a:2:{s:5:\"label\";s:9:\"red river\";s:6:\"search\";a:2:{i:0;s:9:\"red-river\";i:1;s:9:\"red river\";}}s:13:\"fab fa-reddit\";a:2:{s:5:\"label\";s:6:\"Reddit\";s:6:\"search\";a:1:{i:0;s:6:\"reddit\";}}s:19:\"fab fa-reddit-alien\";a:2:{s:5:\"label\";s:12:\"Reddit Alien\";s:6:\"search\";a:2:{i:0;s:12:\"reddit-alien\";i:1;s:12:\"reddit alien\";}}s:13:\"fab fa-redhat\";a:2:{s:5:\"label\";s:6:\"Redhat\";s:6:\"search\";a:4:{i:0;s:5:\"linux\";i:1;s:16:\"operating system\";i:2;s:2:\"os\";i:3;s:6:\"redhat\";}}s:17:\"fas fa-registered\";a:2:{s:5:\"label\";s:18:\"Registered (solid)\";s:6:\"search\";a:5:{i:0;s:9:\"copyright\";i:1;s:4:\"mark\";i:2;s:1:\"r\";i:3;s:10:\"registered\";i:4;s:9:\"trademark\";}}s:17:\"far fa-registered\";a:2:{s:5:\"label\";s:20:\"Registered (regular)\";s:6:\"search\";a:5:{i:0;s:9:\"copyright\";i:1;s:4:\"mark\";i:2;s:1:\"r\";i:3;s:10:\"registered\";i:4;s:9:\"trademark\";}}s:13:\"fab fa-renren\";a:2:{s:5:\"label\";s:6:\"Renren\";s:6:\"search\";a:1:{i:0;s:6:\"renren\";}}s:13:\"fas fa-repeat\";a:2:{s:5:\"label\";s:6:\"Repeat\";s:6:\"search\";a:10:{i:0;s:5:\"arrow\";i:1;s:9:\"clockwise\";i:2;s:4:\"flip\";i:3;s:6:\"reload\";i:4;s:5:\"renew\";i:5;s:6:\"repeat\";i:6;s:13:\"repeat button\";i:7;s:5:\"retry\";i:8;s:6:\"rewind\";i:9;s:6:\"switch\";}}s:12:\"fas fa-reply\";a:2:{s:5:\"label\";s:5:\"Reply\";s:6:\"search\";a:4:{i:0;s:4:\"mail\";i:1;s:7:\"message\";i:2;s:7:\"respond\";i:3;s:5:\"reply\";}}s:16:\"fas fa-reply-all\";a:2:{s:5:\"label\";s:9:\"Reply All\";s:6:\"search\";a:5:{i:0;s:4:\"mail\";i:1;s:7:\"message\";i:2;s:7:\"respond\";i:3;s:9:\"reply-all\";i:4;s:9:\"reply all\";}}s:13:\"fab fa-replyd\";a:2:{s:5:\"label\";s:6:\"replyd\";s:6:\"search\";a:1:{i:0;s:6:\"replyd\";}}s:17:\"fas fa-republican\";a:2:{s:5:\"label\";s:10:\"Republican\";s:6:\"search\";a:10:{i:0;s:8:\"american\";i:1;s:12:\"conservative\";i:2;s:8:\"election\";i:3;s:8:\"elephant\";i:4;s:8:\"politics\";i:5;s:16:\"republican party\";i:6;s:5:\"right\";i:7;s:10:\"right-wing\";i:8;s:3:\"usa\";i:9;s:10:\"republican\";}}s:19:\"fab fa-researchgate\";a:2:{s:5:\"label\";s:12:\"Researchgate\";s:6:\"search\";a:1:{i:0;s:12:\"researchgate\";}}s:16:\"fab fa-resolving\";a:2:{s:5:\"label\";s:9:\"Resolving\";s:6:\"search\";a:1:{i:0;s:9:\"resolving\";}}s:15:\"fas fa-restroom\";a:2:{s:5:\"label\";s:8:\"Restroom\";s:6:\"search\";a:6:{i:0;s:8:\"bathroom\";i:1;s:6:\"toilet\";i:2;s:3:\"uer\";i:3;s:12:\"water closet\";i:4;s:2:\"wc\";i:5;s:8:\"restroom\";}}s:14:\"fas fa-retweet\";a:2:{s:5:\"label\";s:7:\"Retweet\";s:6:\"search\";a:7:{i:0;s:7:\"refresh\";i:1;s:6:\"reload\";i:2;s:5:\"renew\";i:3;s:5:\"retry\";i:4;s:5:\"share\";i:5;s:4:\"swap\";i:6;s:7:\"retweet\";}}s:10:\"fab fa-rev\";a:2:{s:5:\"label\";s:6:\"Rev.io\";s:6:\"search\";a:2:{i:0;s:3:\"rev\";i:1;s:6:\"rev.io\";}}s:13:\"fas fa-ribbon\";a:2:{s:5:\"label\";s:6:\"Ribbon\";s:6:\"search\";a:8:{i:0;s:5:\"badge\";i:1;s:5:\"cause\";i:2;s:11:\"celebration\";i:3;s:5:\"lapel\";i:4;s:3:\"pin\";i:5;s:8:\"reminder\";i:6;s:15:\"reminder ribbon\";i:7;s:6:\"ribbon\";}}s:25:\"fas fa-right-from-bracket\";a:2:{s:5:\"label\";s:18:\"Right From Bracket\";s:6:\"search\";a:8:{i:0;s:5:\"arrow\";i:1;s:4:\"exit\";i:2;s:5:\"leave\";i:3;s:7:\"log out\";i:4;s:6:\"logout\";i:5;s:8:\"sign-out\";i:6;s:18:\"right-from-bracket\";i:7;s:18:\"right from bracket\";}}s:17:\"fas fa-right-left\";a:2:{s:5:\"label\";s:10:\"Right Left\";s:6:\"search\";a:9:{i:0;s:5:\"arrow\";i:1;s:6:\"arrows\";i:2;s:8:\"exchange\";i:3;s:11:\"reciprocate\";i:4;s:6:\"return\";i:5;s:4:\"swap\";i:6;s:8:\"transfer\";i:7;s:10:\"right-left\";i:8;s:10:\"right left\";}}s:17:\"fas fa-right-long\";a:2:{s:5:\"label\";s:10:\"Right Long\";s:6:\"search\";a:5:{i:0;s:7:\"forward\";i:1;s:16:\"long-arrow-right\";i:2;s:4:\"next\";i:3;s:10:\"right-long\";i:4;s:10:\"right long\";}}s:23:\"fas fa-right-to-bracket\";a:2:{s:5:\"label\";s:16:\"Right To Bracket\";s:6:\"search\";a:12:{i:0;s:5:\"arrow\";i:1;s:5:\"enter\";i:2;s:4:\"join\";i:3;s:6:\"log in\";i:4;s:5:\"login\";i:5;s:7:\"sign in\";i:6;s:7:\"sign up\";i:7;s:7:\"sign-in\";i:8;s:6:\"signin\";i:9;s:6:\"signup\";i:10;s:16:\"right-to-bracket\";i:11;s:16:\"right to bracket\";}}s:11:\"fas fa-ring\";a:2:{s:5:\"label\";s:4:\"Ring\";s:6:\"search\";a:14:{i:0;s:18:\"Dungeons & Dragons\";i:1;s:6:\"Gollum\";i:2;s:4:\"band\";i:3;s:7:\"binding\";i:4;s:3:\"d&d\";i:5;s:3:\"dnd\";i:6;s:10:\"engagement\";i:7;s:7:\"fantasy\";i:8;s:4:\"gold\";i:9;s:7:\"jewelry\";i:10;s:8:\"marriage\";i:11;s:8:\"precious\";i:12;s:7:\"premium\";i:13;s:4:\"ring\";}}s:11:\"fas fa-road\";a:2:{s:5:\"label\";s:4:\"Road\";s:6:\"search\";a:8:{i:0;s:7:\"highway\";i:1;s:3:\"map\";i:2;s:8:\"motorway\";i:3;s:8:\"pavement\";i:4;s:4:\"road\";i:5;s:5:\"route\";i:6;s:6:\"street\";i:7;s:6:\"travel\";}}s:19:\"fas fa-road-barrier\";a:2:{s:5:\"label\";s:12:\"Road Barrier\";s:6:\"search\";a:6:{i:0;s:5:\"block\";i:1;s:6:\"border\";i:2;s:8:\"no entry\";i:3;s:9:\"roadblock\";i:4;s:12:\"road-barrier\";i:5;s:12:\"road barrier\";}}s:18:\"fas fa-road-bridge\";a:2:{s:5:\"label\";s:11:\"Road Bridge\";s:6:\"search\";a:6:{i:0;s:6:\"bridge\";i:1;s:14:\"infrastructure\";i:2;s:4:\"road\";i:3;s:6:\"travel\";i:4;s:11:\"road-bridge\";i:5;s:11:\"road bridge\";}}s:24:\"fas fa-road-circle-check\";a:2:{s:5:\"label\";s:17:\"Road Circle Check\";s:6:\"search\";a:12:{i:0;s:6:\"enable\";i:1;s:7:\"freeway\";i:2;s:7:\"highway\";i:3;s:12:\"not affected\";i:4;s:2:\"ok\";i:5;s:4:\"okay\";i:6;s:8:\"pavement\";i:7;s:4:\"road\";i:8;s:8:\"validate\";i:9;s:7:\"working\";i:10;s:17:\"road-circle-check\";i:11;s:17:\"road circle check\";}}s:30:\"fas fa-road-circle-exclamation\";a:2:{s:5:\"label\";s:23:\"Road Circle Exclamation\";s:6:\"search\";a:8:{i:0;s:8:\"affected\";i:1;s:6:\"failed\";i:2;s:7:\"freeway\";i:3;s:7:\"highway\";i:4;s:8:\"pavement\";i:5;s:4:\"road\";i:6;s:23:\"road-circle-exclamation\";i:7;s:23:\"road circle exclamation\";}}s:24:\"fas fa-road-circle-xmark\";a:2:{s:5:\"label\";s:17:\"Road Circle Xmark\";s:6:\"search\";a:8:{i:0;s:7:\"destroy\";i:1;s:7:\"freeway\";i:2;s:7:\"highway\";i:3;s:8:\"pavement\";i:4;s:4:\"road\";i:5;s:7:\"uncheck\";i:6;s:17:\"road-circle-xmark\";i:7;s:17:\"road circle xmark\";}}s:16:\"fas fa-road-lock\";a:2:{s:5:\"label\";s:9:\"Road Lock\";s:6:\"search\";a:11:{i:0;s:6:\"closed\";i:1;s:7:\"freeway\";i:2;s:7:\"highway\";i:3;s:8:\"lockdown\";i:4;s:7:\"padlock\";i:5;s:8:\"pavement\";i:6;s:7:\"privacy\";i:7;s:10:\"quarantine\";i:8;s:4:\"road\";i:9;s:9:\"road-lock\";i:10;s:9:\"road lock\";}}s:18:\"fas fa-road-spikes\";a:2:{s:5:\"label\";s:11:\"Road Spikes\";s:6:\"search\";a:5:{i:0;s:7:\"barrier\";i:1;s:9:\"roadblock\";i:2;s:6:\"spikes\";i:3;s:11:\"road-spikes\";i:4;s:11:\"road spikes\";}}s:12:\"fas fa-robot\";a:2:{s:5:\"label\";s:5:\"Robot\";s:6:\"search\";a:7:{i:0;s:7:\"android\";i:1;s:8:\"automate\";i:2;s:8:\"computer\";i:3;s:6:\"cyborg\";i:4;s:4:\"face\";i:5;s:7:\"monster\";i:6;s:5:\"robot\";}}s:13:\"fas fa-rocket\";a:2:{s:5:\"label\";s:6:\"Rocket\";s:6:\"search\";a:7:{i:0;s:8:\"aircraft\";i:1;s:3:\"app\";i:2;s:3:\"jet\";i:3;s:6:\"launch\";i:4;s:4:\"nasa\";i:5;s:5:\"space\";i:6;s:6:\"rocket\";}}s:17:\"fab fa-rocketchat\";a:2:{s:5:\"label\";s:11:\"Rocket.Chat\";s:6:\"search\";a:2:{i:0;s:10:\"rocketchat\";i:1;s:11:\"rocket.chat\";}}s:14:\"fab fa-rockrms\";a:2:{s:5:\"label\";s:7:\"Rockrms\";s:6:\"search\";a:1:{i:0;s:7:\"rockrms\";}}s:13:\"fas fa-rotate\";a:2:{s:5:\"label\";s:6:\"Rotate\";s:6:\"search\";a:11:{i:0;s:5:\"arrow\";i:1;s:9:\"clockwise\";i:2;s:8:\"exchange\";i:3;s:6:\"modify\";i:4;s:7:\"refresh\";i:5;s:6:\"reload\";i:6;s:5:\"renew\";i:7;s:5:\"retry\";i:8;s:6:\"rotate\";i:9;s:4:\"swap\";i:10;s:11:\"withershins\";}}s:18:\"fas fa-rotate-left\";a:2:{s:5:\"label\";s:11:\"Rotate Left\";s:6:\"search\";a:8:{i:0;s:4:\"back\";i:1;s:9:\"control z\";i:2;s:8:\"exchange\";i:3;s:4:\"oops\";i:4;s:6:\"return\";i:5;s:4:\"swap\";i:6;s:11:\"rotate-left\";i:7;s:11:\"rotate left\";}}s:19:\"fas fa-rotate-right\";a:2:{s:5:\"label\";s:12:\"Rotate Right\";s:6:\"search\";a:8:{i:0;s:7:\"forward\";i:1;s:7:\"refresh\";i:2;s:6:\"reload\";i:3;s:5:\"renew\";i:4;s:6:\"repeat\";i:5;s:5:\"retry\";i:6;s:12:\"rotate-right\";i:7;s:12:\"rotate right\";}}s:12:\"fas fa-route\";a:2:{s:5:\"label\";s:5:\"Route\";s:6:\"search\";a:4:{i:0;s:10:\"directions\";i:1;s:10:\"navigation\";i:2;s:6:\"travel\";i:3;s:5:\"route\";}}s:10:\"fas fa-rss\";a:2:{s:5:\"label\";s:3:\"Rss\";s:6:\"search\";a:6:{i:0;s:4:\"blog\";i:1;s:4:\"feed\";i:2;s:7:\"journal\";i:3;s:4:\"news\";i:4;s:7:\"writing\";i:5;s:3:\"rss\";}}s:17:\"fas fa-ruble-sign\";a:2:{s:5:\"label\";s:10:\"Ruble Sign\";s:6:\"search\";a:4:{i:0;s:10:\"Ruble Sign\";i:1;s:8:\"currency\";i:2;s:10:\"ruble-sign\";i:3;s:10:\"ruble sign\";}}s:10:\"fas fa-rug\";a:2:{s:5:\"label\";s:3:\"Rug\";s:6:\"search\";a:4:{i:0;s:7:\"blanket\";i:1;s:6:\"carpet\";i:2;s:3:\"rug\";i:3;s:7:\"textile\";}}s:12:\"fas fa-ruler\";a:2:{s:5:\"label\";s:5:\"Ruler\";s:6:\"search\";a:8:{i:0;s:6:\"design\";i:1;s:5:\"draft\";i:2;s:6:\"length\";i:3;s:7:\"measure\";i:4;s:8:\"planning\";i:5;s:5:\"ruler\";i:6;s:13:\"straight edge\";i:7;s:14:\"straight ruler\";}}s:21:\"fas fa-ruler-combined\";a:2:{s:5:\"label\";s:14:\"Ruler Combined\";s:6:\"search\";a:7:{i:0;s:6:\"design\";i:1;s:5:\"draft\";i:2;s:6:\"length\";i:3;s:7:\"measure\";i:4;s:8:\"planning\";i:5;s:14:\"ruler-combined\";i:6;s:14:\"ruler combined\";}}s:23:\"fas fa-ruler-horizontal\";a:2:{s:5:\"label\";s:16:\"Ruler Horizontal\";s:6:\"search\";a:7:{i:0;s:6:\"design\";i:1;s:5:\"draft\";i:2;s:6:\"length\";i:3;s:7:\"measure\";i:4;s:8:\"planning\";i:5;s:16:\"ruler-horizontal\";i:6;s:16:\"ruler horizontal\";}}s:21:\"fas fa-ruler-vertical\";a:2:{s:5:\"label\";s:14:\"Ruler Vertical\";s:6:\"search\";a:7:{i:0;s:6:\"design\";i:1;s:5:\"draft\";i:2;s:6:\"length\";i:3;s:7:\"measure\";i:4;s:8:\"planning\";i:5;s:14:\"ruler-vertical\";i:6;s:14:\"ruler vertical\";}}s:17:\"fas fa-rupee-sign\";a:2:{s:5:\"label\";s:10:\"Rupee Sign\";s:6:\"search\";a:4:{i:0;s:10:\"Rupee Sign\";i:1;s:8:\"currency\";i:2;s:10:\"rupee-sign\";i:3;s:10:\"rupee sign\";}}s:18:\"fas fa-rupiah-sign\";a:2:{s:5:\"label\";s:11:\"Rupiah Sign\";s:6:\"search\";a:3:{i:0;s:8:\"currency\";i:1;s:11:\"rupiah-sign\";i:2;s:11:\"rupiah sign\";}}s:11:\"fab fa-rust\";a:2:{s:5:\"label\";s:4:\"Rust\";s:6:\"search\";a:1:{i:0;s:4:\"rust\";}}s:8:\"fas fa-s\";a:2:{s:5:\"label\";s:1:\"S\";s:6:\"search\";a:4:{i:0;s:22:\"Latin Capital Letter S\";i:1;s:20:\"Latin Small Letter S\";i:2;s:6:\"letter\";i:3;s:1:\"s\";}}s:18:\"fas fa-sack-dollar\";a:2:{s:5:\"label\";s:11:\"Sack Dollar\";s:6:\"search\";a:15:{i:0;s:3:\"bag\";i:1;s:6:\"burlap\";i:2;s:4:\"cash\";i:3;s:6:\"dollar\";i:4;s:10:\"investment\";i:5;s:5:\"money\";i:6;s:9:\"money bag\";i:7;s:8:\"moneybag\";i:8;s:7:\"premium\";i:9;s:6:\"robber\";i:10;s:6:\"salary\";i:11;s:5:\"santa\";i:12;s:3:\"usd\";i:13;s:11:\"sack-dollar\";i:14;s:11:\"sack dollar\";}}s:17:\"fas fa-sack-xmark\";a:2:{s:5:\"label\";s:10:\"Sack Xmark\";s:6:\"search\";a:8:{i:0;s:3:\"bag\";i:1;s:6:\"burlap\";i:2;s:6:\"coupon\";i:3;s:7:\"rations\";i:4;s:6:\"salary\";i:5;s:7:\"uncheck\";i:6;s:10:\"sack-xmark\";i:7;s:10:\"sack xmark\";}}s:13:\"fab fa-safari\";a:2:{s:5:\"label\";s:6:\"Safari\";s:6:\"search\";a:2:{i:0;s:7:\"browser\";i:1;s:6:\"safari\";}}s:15:\"fas fa-sailboat\";a:2:{s:5:\"label\";s:8:\"Sailboat\";s:6:\"search\";a:5:{i:0;s:6:\"dinghy\";i:1;s:4:\"mast\";i:2;s:8:\"sailboat\";i:3;s:7:\"sailing\";i:4;s:5:\"yacht\";}}s:17:\"fab fa-salesforce\";a:2:{s:5:\"label\";s:10:\"Salesforce\";s:6:\"search\";a:1:{i:0;s:10:\"salesforce\";}}s:11:\"fab fa-sass\";a:2:{s:5:\"label\";s:4:\"Sass\";s:6:\"search\";a:1:{i:0;s:4:\"sass\";}}s:16:\"fas fa-satellite\";a:2:{s:5:\"label\";s:9:\"Satellite\";s:6:\"search\";a:5:{i:0;s:14:\"communications\";i:1;s:8:\"hardware\";i:2;s:5:\"orbit\";i:3;s:9:\"satellite\";i:4;s:5:\"space\";}}s:21:\"fas fa-satellite-dish\";a:2:{s:5:\"label\";s:14:\"Satellite Dish\";s:6:\"search\";a:14:{i:0;s:4:\"SETI\";i:1;s:7:\"antenna\";i:2;s:14:\"communications\";i:3;s:4:\"dish\";i:4;s:8:\"hardware\";i:5;s:5:\"radar\";i:6;s:8:\"receiver\";i:7;s:9:\"satellite\";i:8;s:17:\"satellite antenna\";i:9;s:6:\"saucer\";i:10;s:6:\"signal\";i:11;s:5:\"space\";i:12;s:14:\"satellite-dish\";i:13;s:14:\"satellite dish\";}}s:21:\"fas fa-scale-balanced\";a:2:{s:5:\"label\";s:14:\"Scale Balanced\";s:6:\"search\";a:14:{i:0;s:5:\"Libra\";i:1;s:7:\"balance\";i:2;s:13:\"balance scale\";i:3;s:8:\"balanced\";i:4;s:7:\"justice\";i:5;s:3:\"law\";i:6;s:5:\"legal\";i:7;s:7:\"measure\";i:8;s:4:\"rule\";i:9;s:5:\"scale\";i:10;s:6:\"weight\";i:11;s:6:\"zodiac\";i:12;s:14:\"scale-balanced\";i:13;s:14:\"scale balanced\";}}s:23:\"fas fa-scale-unbalanced\";a:2:{s:5:\"label\";s:16:\"Scale Unbalanced\";s:6:\"search\";a:7:{i:0;s:7:\"justice\";i:1;s:5:\"legal\";i:2;s:7:\"measure\";i:3;s:10:\"unbalanced\";i:4;s:6:\"weight\";i:5;s:16:\"scale-unbalanced\";i:6;s:16:\"scale unbalanced\";}}s:28:\"fas fa-scale-unbalanced-flip\";a:2:{s:5:\"label\";s:21:\"Scale Unbalanced Flip\";s:6:\"search\";a:7:{i:0;s:7:\"justice\";i:1;s:5:\"legal\";i:2;s:7:\"measure\";i:3;s:10:\"unbalanced\";i:4;s:6:\"weight\";i:5;s:21:\"scale-unbalanced-flip\";i:6;s:21:\"scale unbalanced flip\";}}s:13:\"fab fa-schlix\";a:2:{s:5:\"label\";s:6:\"SCHLIX\";s:6:\"search\";a:1:{i:0;s:6:\"schlix\";}}s:13:\"fas fa-school\";a:2:{s:5:\"label\";s:6:\"School\";s:6:\"search\";a:6:{i:0;s:8:\"building\";i:1;s:9:\"education\";i:2;s:5:\"learn\";i:3;s:6:\"school\";i:4;s:7:\"student\";i:5;s:7:\"teacher\";}}s:26:\"fas fa-school-circle-check\";a:2:{s:5:\"label\";s:19:\"School Circle Check\";s:6:\"search\";a:9:{i:0;s:6:\"enable\";i:1;s:12:\"not affected\";i:2;s:2:\"ok\";i:3;s:4:\"okay\";i:4;s:11:\"schoolhouse\";i:5;s:8:\"validate\";i:6;s:7:\"working\";i:7;s:19:\"school-circle-check\";i:8;s:19:\"school circle check\";}}s:32:\"fas fa-school-circle-exclamation\";a:2:{s:5:\"label\";s:25:\"School Circle Exclamation\";s:6:\"search\";a:5:{i:0;s:8:\"affected\";i:1;s:6:\"failed\";i:2;s:11:\"schoolhouse\";i:3;s:25:\"school-circle-exclamation\";i:4;s:25:\"school circle exclamation\";}}s:26:\"fas fa-school-circle-xmark\";a:2:{s:5:\"label\";s:19:\"School Circle Xmark\";s:6:\"search\";a:5:{i:0;s:7:\"destroy\";i:1;s:11:\"schoolhouse\";i:2;s:7:\"uncheck\";i:3;s:19:\"school-circle-xmark\";i:4;s:19:\"school circle xmark\";}}s:18:\"fas fa-school-flag\";a:2:{s:5:\"label\";s:11:\"School Flag\";s:6:\"search\";a:6:{i:0;s:7:\"educate\";i:1;s:4:\"flag\";i:2;s:6:\"school\";i:3;s:11:\"schoolhouse\";i:4;s:11:\"school-flag\";i:5;s:11:\"school flag\";}}s:18:\"fas fa-school-lock\";a:2:{s:5:\"label\";s:11:\"School Lock\";s:6:\"search\";a:8:{i:0;s:6:\"closed\";i:1;s:8:\"lockdown\";i:2;s:7:\"padlock\";i:3;s:7:\"privacy\";i:4;s:10:\"quarantine\";i:5;s:11:\"schoolhouse\";i:6;s:11:\"school-lock\";i:7;s:11:\"school lock\";}}s:15:\"fas fa-scissors\";a:2:{s:5:\"label\";s:8:\"Scissors\";s:6:\"search\";a:9:{i:0;s:21:\"Black Safety Scissors\";i:1;s:14:\"White Scissors\";i:2;s:4:\"clip\";i:3;s:7:\"cutting\";i:4;s:9:\"equipment\";i:5;s:6:\"modify\";i:6;s:8:\"scissors\";i:7;s:4:\"snip\";i:8;s:4:\"tool\";}}s:16:\"fab fa-screenpal\";a:2:{s:5:\"label\";s:9:\"Screenpal\";s:6:\"search\";a:1:{i:0;s:9:\"screenpal\";}}s:18:\"fas fa-screwdriver\";a:2:{s:5:\"label\";s:11:\"Screwdriver\";s:6:\"search\";a:12:{i:0;s:5:\"admin\";i:1;s:13:\"configuration\";i:2;s:9:\"equipment\";i:3;s:3:\"fix\";i:4;s:11:\"maintenance\";i:5;s:8:\"mechanic\";i:6;s:6:\"modify\";i:7;s:6:\"repair\";i:8;s:5:\"screw\";i:9;s:11:\"screwdriver\";i:10;s:8:\"settings\";i:11;s:4:\"tool\";}}s:25:\"fas fa-screwdriver-wrench\";a:2:{s:5:\"label\";s:18:\"Screwdriver Wrench\";s:6:\"search\";a:13:{i:0;s:5:\"admin\";i:1;s:13:\"configuration\";i:2;s:9:\"equipment\";i:3;s:3:\"fix\";i:4;s:11:\"maintenance\";i:5;s:6:\"modify\";i:6;s:6:\"repair\";i:7;s:11:\"screwdriver\";i:8;s:8:\"settings\";i:9;s:5:\"tools\";i:10;s:6:\"wrench\";i:11;s:18:\"screwdriver-wrench\";i:12;s:18:\"screwdriver wrench\";}}s:13:\"fab fa-scribd\";a:2:{s:5:\"label\";s:6:\"Scribd\";s:6:\"search\";a:1:{i:0;s:6:\"scribd\";}}s:13:\"fas fa-scroll\";a:2:{s:5:\"label\";s:6:\"Scroll\";s:6:\"search\";a:9:{i:0;s:18:\"Dungeons & Dragons\";i:1;s:12:\"announcement\";i:2;s:3:\"d&d\";i:3;s:3:\"dnd\";i:4;s:7:\"fantasy\";i:5;s:5:\"paper\";i:6;s:7:\"scholar\";i:7;s:6:\"script\";i:8;s:6:\"scroll\";}}s:19:\"fas fa-scroll-torah\";a:2:{s:5:\"label\";s:12:\"Scroll Torah\";s:6:\"search\";a:7:{i:0;s:4:\"book\";i:1;s:6:\"jewish\";i:2;s:7:\"judaism\";i:3;s:8:\"religion\";i:4;s:6:\"scroll\";i:5;s:12:\"scroll-torah\";i:6;s:12:\"scroll torah\";}}s:14:\"fas fa-sd-card\";a:2:{s:5:\"label\";s:7:\"Sd Card\";s:6:\"search\";a:7:{i:0;s:5:\"image\";i:1;s:3:\"img\";i:2;s:6:\"memory\";i:3;s:5:\"photo\";i:4;s:4:\"save\";i:5;s:7:\"sd-card\";i:6;s:7:\"sd card\";}}s:18:\"fab fa-searchengin\";a:2:{s:5:\"label\";s:11:\"Searchengin\";s:6:\"search\";a:1:{i:0;s:11:\"searchengin\";}}s:14:\"fas fa-section\";a:2:{s:5:\"label\";s:7:\"Section\";s:6:\"search\";a:5:{i:0;s:12:\"Section Sign\";i:1;s:3:\"law\";i:2;s:5:\"legal\";i:3;s:7:\"silcrow\";i:4;s:7:\"section\";}}s:15:\"fas fa-seedling\";a:2:{s:5:\"label\";s:8:\"Seedling\";s:6:\"search\";a:9:{i:0;s:11:\"environment\";i:1;s:5:\"flora\";i:2;s:4:\"grow\";i:3;s:10:\"investment\";i:4;s:5:\"plant\";i:5;s:7:\"sapling\";i:6;s:8:\"seedling\";i:7;s:5:\"vegan\";i:8;s:5:\"young\";}}s:15:\"fab fa-sellcast\";a:2:{s:5:\"label\";s:8:\"Sellcast\";s:6:\"search\";a:2:{i:0;s:7:\"eercast\";i:1;s:8:\"sellcast\";}}s:13:\"fab fa-sellsy\";a:2:{s:5:\"label\";s:6:\"Sellsy\";s:6:\"search\";a:1:{i:0;s:6:\"sellsy\";}}s:13:\"fas fa-server\";a:2:{s:5:\"label\";s:6:\"Server\";s:6:\"search\";a:8:{i:0;s:8:\"computer\";i:1;s:3:\"cpu\";i:2;s:8:\"database\";i:3;s:8:\"hardware\";i:4;s:5:\"mysql\";i:5;s:7:\"network\";i:6;s:3:\"sql\";i:7;s:6:\"server\";}}s:19:\"fab fa-servicestack\";a:2:{s:5:\"label\";s:12:\"Servicestack\";s:6:\"search\";a:1:{i:0;s:12:\"servicestack\";}}s:13:\"fas fa-shapes\";a:2:{s:5:\"label\";s:6:\"Shapes\";s:6:\"search\";a:6:{i:0;s:6:\"blocks\";i:1;s:5:\"build\";i:2;s:6:\"circle\";i:3;s:6:\"square\";i:4;s:8:\"triangle\";i:5;s:6:\"shapes\";}}s:12:\"fas fa-share\";a:2:{s:5:\"label\";s:5:\"Share\";s:6:\"search\";a:5:{i:0;s:7:\"forward\";i:1;s:4:\"save\";i:2;s:4:\"send\";i:3;s:6:\"social\";i:4;s:5:\"share\";}}s:24:\"fas fa-share-from-square\";a:2:{s:5:\"label\";s:25:\"Share From Square (solid)\";s:6:\"search\";a:6:{i:0;s:7:\"forward\";i:1;s:4:\"save\";i:2;s:4:\"send\";i:3;s:6:\"social\";i:4;s:17:\"share-from-square\";i:5;s:17:\"share from square\";}}s:24:\"far fa-share-from-square\";a:2:{s:5:\"label\";s:27:\"Share From Square (regular)\";s:6:\"search\";a:6:{i:0;s:7:\"forward\";i:1;s:4:\"save\";i:2;s:4:\"send\";i:3;s:6:\"social\";i:4;s:17:\"share-from-square\";i:5;s:17:\"share from square\";}}s:18:\"fas fa-share-nodes\";a:2:{s:5:\"label\";s:11:\"Share Nodes\";s:6:\"search\";a:6:{i:0;s:7:\"forward\";i:1;s:4:\"save\";i:2;s:4:\"send\";i:3;s:6:\"social\";i:4;s:11:\"share-nodes\";i:5;s:11:\"share nodes\";}}s:20:\"fas fa-sheet-plastic\";a:2:{s:5:\"label\";s:13:\"Sheet Plastic\";s:6:\"search\";a:8:{i:0;s:7:\"plastic\";i:1;s:12:\"plastic wrap\";i:2;s:7:\"protect\";i:3;s:4:\"tarp\";i:4;s:9:\"tarpaulin\";i:5;s:10:\"waterproof\";i:6;s:13:\"sheet-plastic\";i:7;s:13:\"sheet plastic\";}}s:18:\"fas fa-shekel-sign\";a:2:{s:5:\"label\";s:11:\"Shekel Sign\";s:6:\"search\";a:6:{i:0;s:15:\"New Sheqel Sign\";i:1;s:8:\"currency\";i:2;s:3:\"ils\";i:3;s:5:\"money\";i:4;s:11:\"shekel-sign\";i:5;s:11:\"shekel sign\";}}s:13:\"fas fa-shield\";a:2:{s:5:\"label\";s:6:\"Shield\";s:6:\"search\";a:15:{i:0;s:11:\"achievement\";i:1;s:5:\"armor\";i:2;s:5:\"award\";i:3;s:5:\"block\";i:4;s:6:\"cleric\";i:5;s:6:\"defend\";i:6;s:7:\"defense\";i:7;s:4:\"holy\";i:8;s:7:\"paladin\";i:9;s:7:\"protect\";i:10;s:6:\"safety\";i:11;s:8:\"security\";i:12;s:6:\"shield\";i:13;s:6:\"weapon\";i:14;s:6:\"winner\";}}s:17:\"fas fa-shield-cat\";a:2:{s:5:\"label\";s:10:\"Shield Cat\";s:6:\"search\";a:8:{i:0;s:6:\"animal\";i:1;s:6:\"feline\";i:2;s:3:\"pet\";i:3;s:7:\"protect\";i:4;s:6:\"safety\";i:5;s:10:\"veterinary\";i:6;s:10:\"shield-cat\";i:7;s:10:\"shield cat\";}}s:17:\"fas fa-shield-dog\";a:2:{s:5:\"label\";s:10:\"Shield Dog\";s:6:\"search\";a:8:{i:0;s:6:\"animal\";i:1;s:6:\"canine\";i:2;s:3:\"pet\";i:3;s:7:\"protect\";i:4;s:6:\"safety\";i:5;s:10:\"veterinary\";i:6;s:10:\"shield-dog\";i:7;s:10:\"shield dog\";}}s:20:\"fas fa-shield-halved\";a:2:{s:5:\"label\";s:13:\"Shield Halved\";s:6:\"search\";a:16:{i:0;s:11:\"achievement\";i:1;s:5:\"armor\";i:2;s:5:\"award\";i:3;s:5:\"block\";i:4;s:6:\"cleric\";i:5;s:6:\"defend\";i:6;s:7:\"defense\";i:7;s:4:\"holy\";i:8;s:7:\"paladin\";i:9;s:7:\"privacy\";i:10;s:8:\"security\";i:11;s:6:\"shield\";i:12;s:6:\"weapon\";i:13;s:6:\"winner\";i:14;s:13:\"shield-halved\";i:15;s:13:\"shield halved\";}}s:19:\"fas fa-shield-heart\";a:2:{s:5:\"label\";s:12:\"Shield Heart\";s:6:\"search\";a:8:{i:0;s:4:\"love\";i:1;s:7:\"protect\";i:2;s:4:\"safe\";i:3;s:6:\"safety\";i:4;s:6:\"shield\";i:5;s:8:\"wishlist\";i:6;s:12:\"shield-heart\";i:7;s:12:\"shield heart\";}}s:19:\"fas fa-shield-virus\";a:2:{s:5:\"label\";s:12:\"Shield Virus\";s:6:\"search\";a:13:{i:0;s:10:\"antibodies\";i:1;s:7:\"barrier\";i:2;s:11:\"coronavirus\";i:3;s:8:\"covid-19\";i:4;s:3:\"flu\";i:5;s:6:\"health\";i:6;s:9:\"infection\";i:7;s:8:\"pandemic\";i:8;s:7:\"protect\";i:9;s:6:\"safety\";i:10;s:7:\"vaccine\";i:11;s:12:\"shield-virus\";i:12;s:12:\"shield virus\";}}s:11:\"fas fa-ship\";a:2:{s:5:\"label\";s:4:\"Ship\";s:6:\"search\";a:5:{i:0;s:4:\"boat\";i:1;s:9:\"passenger\";i:2;s:3:\"sea\";i:3;s:4:\"ship\";i:4;s:5:\"water\";}}s:12:\"fas fa-shirt\";a:2:{s:5:\"label\";s:5:\"Shirt\";s:6:\"search\";a:7:{i:0;s:8:\"clothing\";i:1;s:7:\"fashion\";i:2;s:7:\"garment\";i:3;s:5:\"shirt\";i:4;s:12:\"short sleeve\";i:5;s:7:\"t-shirt\";i:6;s:6:\"tshirt\";}}s:19:\"fab fa-shirtsinbulk\";a:2:{s:5:\"label\";s:14:\"Shirts in Bulk\";s:6:\"search\";a:2:{i:0;s:12:\"shirtsinbulk\";i:1;s:14:\"shirts in bulk\";}}s:18:\"fas fa-shoe-prints\";a:2:{s:5:\"label\";s:11:\"Shoe Prints\";s:6:\"search\";a:6:{i:0;s:4:\"feet\";i:1;s:10:\"footprints\";i:2;s:5:\"steps\";i:3;s:4:\"walk\";i:4;s:11:\"shoe-prints\";i:5;s:11:\"shoe prints\";}}s:15:\"fab fa-shoelace\";a:2:{s:5:\"label\";s:8:\"Shoelace\";s:6:\"search\";a:1:{i:0;s:8:\"shoelace\";}}s:11:\"fas fa-shop\";a:2:{s:5:\"label\";s:4:\"Shop\";s:6:\"search\";a:8:{i:0;s:6:\"bodega\";i:1;s:8:\"building\";i:2;s:3:\"buy\";i:3;s:6:\"market\";i:4;s:8:\"purchase\";i:5;s:8:\"shopping\";i:6;s:5:\"store\";i:7;s:4:\"shop\";}}s:16:\"fas fa-shop-lock\";a:2:{s:5:\"label\";s:9:\"Shop Lock\";s:6:\"search\";a:16:{i:0;s:6:\"bodega\";i:1;s:8:\"building\";i:2;s:3:\"buy\";i:3;s:6:\"closed\";i:4;s:4:\"lock\";i:5;s:8:\"lockdown\";i:6;s:6:\"market\";i:7;s:7:\"padlock\";i:8;s:7:\"privacy\";i:9;s:8:\"purchase\";i:10;s:10:\"quarantine\";i:11;s:4:\"shop\";i:12;s:8:\"shopping\";i:13;s:5:\"store\";i:14;s:9:\"shop-lock\";i:15;s:9:\"shop lock\";}}s:17:\"fas fa-shop-slash\";a:2:{s:5:\"label\";s:10:\"Shop Slash\";s:6:\"search\";a:9:{i:0;s:8:\"building\";i:1;s:3:\"buy\";i:2;s:6:\"closed\";i:3;s:8:\"covid-19\";i:4;s:8:\"disabled\";i:5;s:8:\"purchase\";i:6;s:8:\"shopping\";i:7;s:10:\"shop-slash\";i:8;s:10:\"shop slash\";}}s:14:\"fab fa-shopify\";a:2:{s:5:\"label\";s:7:\"Shopify\";s:6:\"search\";a:1:{i:0;s:7:\"shopify\";}}s:15:\"fab fa-shopware\";a:2:{s:5:\"label\";s:8:\"Shopware\";s:6:\"search\";a:1:{i:0;s:8:\"shopware\";}}s:13:\"fas fa-shower\";a:2:{s:5:\"label\";s:6:\"Shower\";s:6:\"search\";a:5:{i:0;s:4:\"bath\";i:1;s:5:\"clean\";i:2;s:6:\"faucet\";i:3;s:6:\"shower\";i:4;s:5:\"water\";}}s:13:\"fas fa-shrimp\";a:2:{s:5:\"label\";s:6:\"Shrimp\";s:6:\"search\";a:7:{i:0;s:7:\"allergy\";i:1;s:10:\"crustacean\";i:2;s:5:\"prawn\";i:3;s:7:\"seafood\";i:4;s:9:\"shellfish\";i:5;s:6:\"shrimp\";i:6;s:4:\"tail\";}}s:14:\"fas fa-shuffle\";a:2:{s:5:\"label\";s:7:\"Shuffle\";s:6:\"search\";a:9:{i:0;s:5:\"arrow\";i:1;s:6:\"arrows\";i:2;s:7:\"crossed\";i:3;s:7:\"shuffle\";i:4;s:21:\"shuffle tracks button\";i:5;s:4:\"sort\";i:6;s:4:\"swap\";i:7;s:6:\"switch\";i:8;s:8:\"transfer\";}}s:20:\"fas fa-shuttle-space\";a:2:{s:5:\"label\";s:13:\"Shuttle Space\";s:6:\"search\";a:8:{i:0;s:9:\"astronaut\";i:1;s:7:\"machine\";i:2;s:4:\"nasa\";i:3;s:6:\"rocket\";i:4;s:5:\"space\";i:5;s:14:\"transportation\";i:6;s:13:\"shuttle-space\";i:7;s:13:\"shuttle space\";}}s:19:\"fas fa-sign-hanging\";a:2:{s:5:\"label\";s:12:\"Sign Hanging\";s:6:\"search\";a:6:{i:0;s:10:\"directions\";i:1;s:11:\"real estate\";i:2;s:7:\"signage\";i:3;s:10:\"wayfinding\";i:4;s:12:\"sign-hanging\";i:5;s:12:\"sign hanging\";}}s:13:\"fas fa-signal\";a:2:{s:5:\"label\";s:6:\"Signal\";s:6:\"search\";a:12:{i:0;s:7:\"antenna\";i:1;s:12:\"antenna bars\";i:2;s:3:\"bar\";i:3;s:4:\"bars\";i:4;s:4:\"cell\";i:5;s:5:\"graph\";i:6;s:6:\"mobile\";i:7;s:6:\"online\";i:8;s:5:\"phone\";i:9;s:9:\"reception\";i:10;s:6:\"status\";i:11;s:6:\"signal\";}}s:23:\"fab fa-signal-messenger\";a:2:{s:5:\"label\";s:16:\"Signal Messenger\";s:6:\"search\";a:2:{i:0;s:16:\"signal-messenger\";i:1;s:16:\"signal messenger\";}}s:16:\"fas fa-signature\";a:2:{s:5:\"label\";s:9:\"Signature\";s:6:\"search\";a:6:{i:0;s:12:\"John Hancock\";i:1;s:7:\"cursive\";i:2;s:4:\"name\";i:3;s:8:\"username\";i:4;s:7:\"writing\";i:5;s:9:\"signature\";}}s:17:\"fas fa-signs-post\";a:2:{s:5:\"label\";s:10:\"Signs Post\";s:6:\"search\";a:7:{i:0;s:10:\"directions\";i:1;s:9:\"directory\";i:2;s:3:\"map\";i:3;s:7:\"signage\";i:4;s:10:\"wayfinding\";i:5;s:10:\"signs-post\";i:6;s:10:\"signs post\";}}s:15:\"fas fa-sim-card\";a:2:{s:5:\"label\";s:8:\"Sim Card\";s:6:\"search\";a:8:{i:0;s:10:\"hard drive\";i:1;s:8:\"hardware\";i:2;s:8:\"portable\";i:3;s:7:\"storage\";i:4;s:10:\"technology\";i:5;s:4:\"tiny\";i:6;s:8:\"sim-card\";i:7;s:8:\"sim card\";}}s:18:\"fab fa-simplybuilt\";a:2:{s:5:\"label\";s:11:\"SimplyBuilt\";s:6:\"search\";a:1:{i:0;s:11:\"simplybuilt\";}}s:11:\"fas fa-sink\";a:2:{s:5:\"label\";s:4:\"Sink\";s:6:\"search\";a:6:{i:0;s:8:\"bathroom\";i:1;s:8:\"covid-19\";i:2;s:6:\"faucet\";i:3;s:7:\"kitchen\";i:4;s:4:\"wash\";i:5;s:4:\"sink\";}}s:14:\"fab fa-sistrix\";a:2:{s:5:\"label\";s:7:\"SISTRIX\";s:6:\"search\";a:1:{i:0;s:7:\"sistrix\";}}s:14:\"fas fa-sitemap\";a:2:{s:5:\"label\";s:7:\"Sitemap\";s:6:\"search\";a:6:{i:0;s:9:\"directory\";i:1;s:9:\"hierarchy\";i:2;s:2:\"ia\";i:3;s:24:\"information architecture\";i:4;s:12:\"organization\";i:5;s:7:\"sitemap\";}}s:11:\"fab fa-sith\";a:2:{s:5:\"label\";s:4:\"Sith\";s:6:\"search\";a:1:{i:0;s:4:\"sith\";}}s:13:\"fab fa-sitrox\";a:2:{s:5:\"label\";s:6:\"Sitrox\";s:6:\"search\";a:1:{i:0;s:6:\"sitrox\";}}s:13:\"fab fa-sketch\";a:2:{s:5:\"label\";s:6:\"Sketch\";s:6:\"search\";a:4:{i:0;s:3:\"app\";i:1;s:6:\"design\";i:2;s:9:\"interface\";i:3;s:6:\"sketch\";}}s:12:\"fas fa-skull\";a:2:{s:5:\"label\";s:5:\"Skull\";s:6:\"search\";a:10:{i:0;s:5:\"bones\";i:1;s:5:\"death\";i:2;s:4:\"face\";i:3;s:10:\"fairy tale\";i:4;s:7:\"monster\";i:5;s:8:\"skeleton\";i:6;s:5:\"skull\";i:7;s:3:\"uer\";i:8;s:5:\"x-ray\";i:9;s:6:\"yorick\";}}s:23:\"fas fa-skull-crossbones\";a:2:{s:5:\"label\";s:16:\"Skull Crossbones\";s:6:\"search\";a:26:{i:0;s:26:\"Black Skull and Crossbones\";i:1;s:18:\"Dungeons & Dragons\";i:2;s:5:\"alert\";i:3;s:5:\"bones\";i:4;s:10:\"crossbones\";i:5;s:3:\"d&d\";i:6;s:6:\"danger\";i:7;s:14:\"dangerous area\";i:8;s:4:\"dead\";i:9;s:6:\"deadly\";i:10;s:5:\"death\";i:11;s:3:\"dnd\";i:12;s:4:\"face\";i:13;s:7:\"fantasy\";i:14;s:9:\"halloween\";i:15;s:7:\"holiday\";i:16;s:11:\"jolly-roger\";i:17;s:7:\"monster\";i:18;s:6:\"pirate\";i:19;s:6:\"poison\";i:20;s:8:\"skeleton\";i:21;s:5:\"skull\";i:22;s:20:\"skull and crossbones\";i:23;s:7:\"warning\";i:24;s:16:\"skull-crossbones\";i:25;s:16:\"skull crossbones\";}}s:15:\"fab fa-skyatlas\";a:2:{s:5:\"label\";s:8:\"skyatlas\";s:6:\"search\";a:1:{i:0;s:8:\"skyatlas\";}}s:12:\"fab fa-skype\";a:2:{s:5:\"label\";s:5:\"Skype\";s:6:\"search\";a:1:{i:0;s:5:\"skype\";}}s:12:\"fab fa-slack\";a:2:{s:5:\"label\";s:10:\"Slack Logo\";s:6:\"search\";a:5:{i:0;s:6:\"anchor\";i:1;s:4:\"hash\";i:2;s:7:\"hashtag\";i:3;s:5:\"slack\";i:4;s:10:\"slack logo\";}}s:12:\"fas fa-slash\";a:2:{s:5:\"label\";s:5:\"Slash\";s:6:\"search\";a:7:{i:0;s:6:\"cancel\";i:1;s:5:\"close\";i:2;s:4:\"mute\";i:3;s:3:\"off\";i:4;s:4:\"stop\";i:5;s:1:\"x\";i:6;s:5:\"slash\";}}s:13:\"fas fa-sleigh\";a:2:{s:5:\"label\";s:6:\"Sleigh\";s:6:\"search\";a:9:{i:0;s:9:\"christmas\";i:1;s:5:\"claus\";i:2;s:3:\"fly\";i:3;s:7:\"holiday\";i:4;s:5:\"santa\";i:5;s:4:\"sled\";i:6;s:4:\"snow\";i:7;s:4:\"xmas\";i:8;s:6:\"sleigh\";}}s:14:\"fas fa-sliders\";a:2:{s:5:\"label\";s:7:\"Sliders\";s:6:\"search\";a:6:{i:0;s:6:\"adjust\";i:1;s:13:\"configuration\";i:2;s:6:\"modify\";i:3;s:8:\"settings\";i:4;s:7:\"sliders\";i:5;s:6:\"toggle\";}}s:17:\"fab fa-slideshare\";a:2:{s:5:\"label\";s:10:\"Slideshare\";s:6:\"search\";a:1:{i:0;s:10:\"slideshare\";}}s:11:\"fas fa-smog\";a:2:{s:5:\"label\";s:4:\"Smog\";s:6:\"search\";a:7:{i:0;s:6:\"dragon\";i:1;s:3:\"fog\";i:2;s:4:\"haze\";i:3;s:9:\"pollution\";i:4;s:5:\"smoke\";i:5;s:7:\"weather\";i:6;s:4:\"smog\";}}s:14:\"fas fa-smoking\";a:2:{s:5:\"label\";s:7:\"Smoking\";s:6:\"search\";a:6:{i:0;s:6:\"cancer\";i:1;s:9:\"cigarette\";i:2;s:8:\"nicotine\";i:3;s:7:\"smoking\";i:4;s:14:\"smoking status\";i:5;s:7:\"tobacco\";}}s:15:\"fab fa-snapchat\";a:2:{s:5:\"label\";s:8:\"Snapchat\";s:6:\"search\";a:1:{i:0;s:8:\"snapchat\";}}s:16:\"fas fa-snowflake\";a:2:{s:5:\"label\";s:17:\"Snowflake (solid)\";s:6:\"search\";a:8:{i:0;s:23:\"Heavy Chevron Snowflake\";i:1;s:4:\"cold\";i:2;s:13:\"precipitation\";i:3;s:4:\"rain\";i:4;s:4:\"snow\";i:5;s:8:\"snowfall\";i:6;s:9:\"snowflake\";i:7;s:6:\"winter\";}}s:16:\"far fa-snowflake\";a:2:{s:5:\"label\";s:19:\"Snowflake (regular)\";s:6:\"search\";a:8:{i:0;s:23:\"Heavy Chevron Snowflake\";i:1;s:4:\"cold\";i:2;s:13:\"precipitation\";i:3;s:4:\"rain\";i:4;s:4:\"snow\";i:5;s:8:\"snowfall\";i:6;s:9:\"snowflake\";i:7;s:6:\"winter\";}}s:14:\"fas fa-snowman\";a:2:{s:5:\"label\";s:7:\"Snowman\";s:6:\"search\";a:8:{i:0;s:4:\"cold\";i:1;s:10:\"decoration\";i:2;s:5:\"frost\";i:3;s:6:\"frosty\";i:4;s:7:\"holiday\";i:5;s:4:\"snow\";i:6;s:7:\"snowman\";i:7;s:20:\"snowman without snow\";}}s:15:\"fas fa-snowplow\";a:2:{s:5:\"label\";s:8:\"Snowplow\";s:6:\"search\";a:6:{i:0;s:8:\"clean up\";i:1;s:4:\"cold\";i:2;s:4:\"road\";i:3;s:5:\"storm\";i:4;s:6:\"winter\";i:5;s:8:\"snowplow\";}}s:11:\"fas fa-soap\";a:2:{s:5:\"label\";s:4:\"Soap\";s:6:\"search\";a:11:{i:0;s:3:\"bar\";i:1;s:7:\"bathing\";i:2;s:7:\"bubbles\";i:3;s:5:\"clean\";i:4;s:8:\"cleaning\";i:5;s:8:\"covid-19\";i:6;s:7:\"hygiene\";i:7;s:6:\"lather\";i:8;s:4:\"soap\";i:9;s:8:\"soapdish\";i:10;s:4:\"wash\";}}s:12:\"fas fa-socks\";a:2:{s:5:\"label\";s:5:\"Socks\";s:6:\"search\";a:8:{i:0;s:14:\"business socks\";i:1;s:13:\"business time\";i:2;s:8:\"clothing\";i:3;s:4:\"feet\";i:4;s:23:\"flight of the conchords\";i:5;s:5:\"socks\";i:6;s:8:\"stocking\";i:7;s:9:\"wednesday\";}}s:18:\"fas fa-solar-panel\";a:2:{s:5:\"label\";s:11:\"Solar Panel\";s:6:\"search\";a:7:{i:0;s:5:\"clean\";i:1;s:12:\"eco-friendly\";i:2;s:6:\"energy\";i:3;s:5:\"green\";i:4;s:3:\"sun\";i:5;s:11:\"solar-panel\";i:6;s:11:\"solar panel\";}}s:11:\"fas fa-sort\";a:2:{s:5:\"label\";s:4:\"Sort\";s:6:\"search\";a:3:{i:0;s:6:\"filter\";i:1;s:5:\"order\";i:2;s:4:\"sort\";}}s:16:\"fas fa-sort-down\";a:2:{s:5:\"label\";s:9:\"Sort Down\";s:6:\"search\";a:8:{i:0;s:5:\"arrow\";i:1;s:10:\"descending\";i:2;s:6:\"filter\";i:3;s:6:\"insert\";i:4;s:5:\"order\";i:5;s:9:\"sort-desc\";i:6;s:9:\"sort-down\";i:7;s:9:\"sort down\";}}s:14:\"fas fa-sort-up\";a:2:{s:5:\"label\";s:7:\"Sort Up\";s:6:\"search\";a:8:{i:0;s:5:\"arrow\";i:1;s:9:\"ascending\";i:2;s:6:\"filter\";i:3;s:5:\"order\";i:4;s:8:\"sort-asc\";i:5;s:7:\"upgrade\";i:6;s:7:\"sort-up\";i:7;s:7:\"sort up\";}}s:17:\"fab fa-soundcloud\";a:2:{s:5:\"label\";s:10:\"SoundCloud\";s:6:\"search\";a:1:{i:0;s:10:\"soundcloud\";}}s:17:\"fab fa-sourcetree\";a:2:{s:5:\"label\";s:10:\"Sourcetree\";s:6:\"search\";a:1:{i:0;s:10:\"sourcetree\";}}s:10:\"fas fa-spa\";a:2:{s:5:\"label\";s:3:\"Spa\";s:6:\"search\";a:6:{i:0;s:5:\"flora\";i:1;s:7:\"massage\";i:2;s:11:\"mindfulness\";i:3;s:5:\"plant\";i:4;s:8:\"wellness\";i:5;s:3:\"spa\";}}s:20:\"fab fa-space-awesome\";a:2:{s:5:\"label\";s:13:\"Space Awesome\";s:6:\"search\";a:6:{i:0;s:9:\"adventure\";i:1;s:6:\"rocket\";i:2;s:4:\"ship\";i:3;s:7:\"shuttle\";i:4;s:13:\"space-awesome\";i:5;s:13:\"space awesome\";}}s:31:\"fas fa-spaghetti-monster-flying\";a:2:{s:5:\"label\";s:24:\"Spaghetti Monster Flying\";s:6:\"search\";a:6:{i:0;s:11:\"agnosticism\";i:1;s:7:\"atheism\";i:2;s:24:\"flying spaghetti monster\";i:3;s:3:\"fsm\";i:4;s:24:\"spaghetti-monster-flying\";i:5;s:24:\"spaghetti monster flying\";}}s:14:\"fab fa-speakap\";a:2:{s:5:\"label\";s:7:\"Speakap\";s:6:\"search\";a:1:{i:0;s:7:\"speakap\";}}s:19:\"fab fa-speaker-deck\";a:2:{s:5:\"label\";s:12:\"Speaker Deck\";s:6:\"search\";a:2:{i:0;s:12:\"speaker-deck\";i:1;s:12:\"speaker deck\";}}s:18:\"fas fa-spell-check\";a:2:{s:5:\"label\";s:11:\"Spell Check\";s:6:\"search\";a:10:{i:0;s:10:\"dictionary\";i:1;s:4:\"edit\";i:2;s:6:\"editor\";i:3;s:6:\"enable\";i:4;s:7:\"grammar\";i:5;s:4:\"text\";i:6;s:8:\"validate\";i:7;s:7:\"working\";i:8;s:11:\"spell-check\";i:9;s:11:\"spell check\";}}s:13:\"fas fa-spider\";a:2:{s:5:\"label\";s:6:\"Spider\";s:6:\"search\";a:8:{i:0;s:8:\"arachnid\";i:1;s:3:\"bug\";i:2;s:9:\"charlotte\";i:3;s:5:\"crawl\";i:4;s:5:\"eight\";i:5;s:9:\"halloween\";i:6;s:6:\"insect\";i:7;s:6:\"spider\";}}s:14:\"fas fa-spinner\";a:2:{s:5:\"label\";s:7:\"Spinner\";s:6:\"search\";a:5:{i:0;s:6:\"circle\";i:1;s:7:\"loading\";i:2;s:7:\"pending\";i:3;s:8:\"progress\";i:4;s:7:\"spinner\";}}s:14:\"fas fa-splotch\";a:2:{s:5:\"label\";s:7:\"Splotch\";s:6:\"search\";a:6:{i:0;s:3:\"Ink\";i:1;s:4:\"blob\";i:2;s:6:\"blotch\";i:3;s:4:\"glob\";i:4;s:5:\"stain\";i:5;s:7:\"splotch\";}}s:12:\"fas fa-spoon\";a:2:{s:5:\"label\";s:5:\"Spoon\";s:6:\"search\";a:6:{i:0;s:7:\"cutlery\";i:1;s:6:\"dining\";i:2;s:5:\"scoop\";i:3;s:10:\"silverware\";i:4;s:5:\"spoon\";i:5;s:9:\"tableware\";}}s:14:\"fab fa-spotify\";a:2:{s:5:\"label\";s:7:\"Spotify\";s:6:\"search\";a:1:{i:0;s:7:\"spotify\";}}s:16:\"fas fa-spray-can\";a:2:{s:5:\"label\";s:9:\"Spray Can\";s:6:\"search\";a:7:{i:0;s:5:\"Paint\";i:1;s:7:\"aerosol\";i:2;s:6:\"design\";i:3;s:8:\"graffiti\";i:4;s:3:\"tag\";i:5;s:9:\"spray-can\";i:6;s:9:\"spray can\";}}s:25:\"fas fa-spray-can-sparkles\";a:2:{s:5:\"label\";s:18:\"Spray Can Sparkles\";s:6:\"search\";a:8:{i:0;s:3:\"car\";i:1;s:5:\"clean\";i:2;s:9:\"deodorize\";i:3;s:5:\"fresh\";i:4;s:4:\"pine\";i:5;s:5:\"scent\";i:6;s:18:\"spray-can-sparkles\";i:7;s:18:\"spray can sparkles\";}}s:13:\"fas fa-square\";a:2:{s:5:\"label\";s:14:\"Square (solid)\";s:6:\"search\";a:8:{i:0;s:12:\"Black Square\";i:1;s:19:\"black medium square\";i:2;s:5:\"block\";i:3;s:3:\"box\";i:4;s:9:\"geometric\";i:5;s:5:\"shape\";i:6;s:6:\"square\";i:7;s:19:\"white medium square\";}}s:13:\"far fa-square\";a:2:{s:5:\"label\";s:16:\"Square (regular)\";s:6:\"search\";a:8:{i:0;s:12:\"Black Square\";i:1;s:19:\"black medium square\";i:2;s:5:\"block\";i:3;s:3:\"box\";i:4;s:9:\"geometric\";i:5;s:5:\"shape\";i:6;s:6:\"square\";i:7;s:19:\"white medium square\";}}s:28:\"fas fa-square-arrow-up-right\";a:2:{s:5:\"label\";s:21:\"Square Arrow Up Right\";s:6:\"search\";a:7:{i:0;s:8:\"diagonal\";i:1;s:3:\"new\";i:2;s:4:\"open\";i:3;s:4:\"send\";i:4;s:5:\"share\";i:5;s:21:\"square-arrow-up-right\";i:6;s:21:\"square arrow up right\";}}s:21:\"fab fa-square-behance\";a:2:{s:5:\"label\";s:14:\"Square Behance\";s:6:\"search\";a:2:{i:0;s:14:\"square-behance\";i:1;s:14:\"square behance\";}}s:24:\"fas fa-square-caret-down\";a:2:{s:5:\"label\";s:25:\"Square Caret Down (solid)\";s:6:\"search\";a:10:{i:0;s:5:\"arrow\";i:1;s:19:\"caret-square-o-down\";i:2;s:8:\"dropdown\";i:3;s:6:\"expand\";i:4;s:6:\"insert\";i:5;s:4:\"menu\";i:6;s:4:\"more\";i:7;s:8:\"triangle\";i:8;s:17:\"square-caret-down\";i:9;s:17:\"square caret down\";}}s:24:\"far fa-square-caret-down\";a:2:{s:5:\"label\";s:27:\"Square Caret Down (regular)\";s:6:\"search\";a:10:{i:0;s:5:\"arrow\";i:1;s:19:\"caret-square-o-down\";i:2;s:8:\"dropdown\";i:3;s:6:\"expand\";i:4;s:6:\"insert\";i:5;s:4:\"menu\";i:6;s:4:\"more\";i:7;s:8:\"triangle\";i:8;s:17:\"square-caret-down\";i:9;s:17:\"square caret down\";}}s:24:\"fas fa-square-caret-left\";a:2:{s:5:\"label\";s:25:\"Square Caret Left (solid)\";s:6:\"search\";a:7:{i:0;s:5:\"arrow\";i:1;s:4:\"back\";i:2;s:19:\"caret-square-o-left\";i:3;s:8:\"previous\";i:4;s:8:\"triangle\";i:5;s:17:\"square-caret-left\";i:6;s:17:\"square caret left\";}}s:24:\"far fa-square-caret-left\";a:2:{s:5:\"label\";s:27:\"Square Caret Left (regular)\";s:6:\"search\";a:7:{i:0;s:5:\"arrow\";i:1;s:4:\"back\";i:2;s:19:\"caret-square-o-left\";i:3;s:8:\"previous\";i:4;s:8:\"triangle\";i:5;s:17:\"square-caret-left\";i:6;s:17:\"square caret left\";}}s:25:\"fas fa-square-caret-right\";a:2:{s:5:\"label\";s:26:\"Square Caret Right (solid)\";s:6:\"search\";a:7:{i:0;s:5:\"arrow\";i:1;s:20:\"caret-square-o-right\";i:2;s:7:\"forward\";i:3;s:4:\"next\";i:4;s:8:\"triangle\";i:5;s:18:\"square-caret-right\";i:6;s:18:\"square caret right\";}}s:25:\"far fa-square-caret-right\";a:2:{s:5:\"label\";s:28:\"Square Caret Right (regular)\";s:6:\"search\";a:7:{i:0;s:5:\"arrow\";i:1;s:20:\"caret-square-o-right\";i:2;s:7:\"forward\";i:3;s:4:\"next\";i:4;s:8:\"triangle\";i:5;s:18:\"square-caret-right\";i:6;s:18:\"square caret right\";}}s:22:\"fas fa-square-caret-up\";a:2:{s:5:\"label\";s:23:\"Square Caret Up (solid)\";s:6:\"search\";a:8:{i:0;s:5:\"arrow\";i:1;s:17:\"caret-square-o-up\";i:2;s:8:\"collapse\";i:3;s:8:\"triangle\";i:4;s:7:\"upgrade\";i:5;s:6:\"upload\";i:6;s:15:\"square-caret-up\";i:7;s:15:\"square caret up\";}}s:22:\"far fa-square-caret-up\";a:2:{s:5:\"label\";s:25:\"Square Caret Up (regular)\";s:6:\"search\";a:8:{i:0;s:5:\"arrow\";i:1;s:17:\"caret-square-o-up\";i:2;s:8:\"collapse\";i:3;s:8:\"triangle\";i:4;s:7:\"upgrade\";i:5;s:6:\"upload\";i:6;s:15:\"square-caret-up\";i:7;s:15:\"square caret up\";}}s:19:\"fas fa-square-check\";a:2:{s:5:\"label\";s:20:\"Square Check (solid)\";s:6:\"search\";a:25:{i:0;s:6:\"accept\";i:1;s:5:\"agree\";i:2;s:3:\"box\";i:3;s:6:\"button\";i:4;s:5:\"check\";i:5;s:20:\"check box with check\";i:6;s:17:\"check mark button\";i:7;s:9:\"checkmark\";i:8;s:7:\"confirm\";i:9;s:7:\"correct\";i:10;s:6:\"coupon\";i:11;s:4:\"done\";i:12;s:6:\"enable\";i:13;s:4:\"mark\";i:14;s:2:\"ok\";i:15;s:6:\"select\";i:16;s:7:\"success\";i:17;s:4:\"tick\";i:18;s:4:\"todo\";i:19;s:8:\"validate\";i:20;s:7:\"working\";i:21;s:3:\"yes\";i:22;s:3:\"✓\";i:23;s:12:\"square-check\";i:24;s:12:\"square check\";}}s:19:\"far fa-square-check\";a:2:{s:5:\"label\";s:22:\"Square Check (regular)\";s:6:\"search\";a:25:{i:0;s:6:\"accept\";i:1;s:5:\"agree\";i:2;s:3:\"box\";i:3;s:6:\"button\";i:4;s:5:\"check\";i:5;s:20:\"check box with check\";i:6;s:17:\"check mark button\";i:7;s:9:\"checkmark\";i:8;s:7:\"confirm\";i:9;s:7:\"correct\";i:10;s:6:\"coupon\";i:11;s:4:\"done\";i:12;s:6:\"enable\";i:13;s:4:\"mark\";i:14;s:2:\"ok\";i:15;s:6:\"select\";i:16;s:7:\"success\";i:17;s:4:\"tick\";i:18;s:4:\"todo\";i:19;s:8:\"validate\";i:20;s:7:\"working\";i:21;s:3:\"yes\";i:22;s:3:\"✓\";i:23;s:12:\"square-check\";i:24;s:12:\"square check\";}}s:22:\"fab fa-square-dribbble\";a:2:{s:5:\"label\";s:15:\"Square Dribbble\";s:6:\"search\";a:2:{i:0;s:15:\"square-dribbble\";i:1;s:15:\"square dribbble\";}}s:22:\"fas fa-square-envelope\";a:2:{s:5:\"label\";s:15:\"Square Envelope\";s:6:\"search\";a:10:{i:0;s:6:\"e-mail\";i:1;s:5:\"email\";i:2;s:6:\"letter\";i:3;s:4:\"mail\";i:4;s:7:\"message\";i:5;s:12:\"notification\";i:6;s:5:\"offer\";i:7;s:7:\"support\";i:8;s:15:\"square-envelope\";i:9;s:15:\"square envelope\";}}s:22:\"fab fa-square-facebook\";a:2:{s:5:\"label\";s:15:\"Square Facebook\";s:6:\"search\";a:5:{i:0;s:6:\"fabook\";i:1;s:2:\"fb\";i:2;s:14:\"social network\";i:3;s:15:\"square-facebook\";i:4;s:15:\"square facebook\";}}s:26:\"fab fa-square-font-awesome\";a:2:{s:5:\"label\";s:19:\"Square Font Awesome\";s:6:\"search\";a:2:{i:0;s:19:\"square-font-awesome\";i:1;s:19:\"square font awesome\";}}s:33:\"fab fa-square-font-awesome-stroke\";a:2:{s:5:\"label\";s:26:\"Square Font Awesome Stroke\";s:6:\"search\";a:7:{i:0;s:5:\" flag\";i:1;s:5:\" font\";i:2;s:6:\" icons\";i:3;s:9:\" typeface\";i:4;s:7:\"awesome\";i:5;s:26:\"square-font-awesome-stroke\";i:6;s:26:\"square font awesome stroke\";}}s:18:\"fas fa-square-full\";a:2:{s:5:\"label\";s:19:\"Square Full (solid)\";s:6:\"search\";a:23:{i:0;s:18:\"black large square\";i:1;s:5:\"block\";i:2;s:4:\"blue\";i:3;s:11:\"blue square\";i:4;s:3:\"box\";i:5;s:5:\"brown\";i:6;s:12:\"brown square\";i:7;s:9:\"geometric\";i:8;s:5:\"green\";i:9;s:12:\"green square\";i:10;s:6:\"orange\";i:11;s:13:\"orange square\";i:12;s:6:\"purple\";i:13;s:13:\"purple square\";i:14;s:3:\"red\";i:15;s:10:\"red square\";i:16;s:5:\"shape\";i:17;s:6:\"square\";i:18;s:18:\"white large square\";i:19;s:6:\"yellow\";i:20;s:13:\"yellow square\";i:21;s:11:\"square-full\";i:22;s:11:\"square full\";}}s:18:\"far fa-square-full\";a:2:{s:5:\"label\";s:21:\"Square Full (regular)\";s:6:\"search\";a:23:{i:0;s:18:\"black large square\";i:1;s:5:\"block\";i:2;s:4:\"blue\";i:3;s:11:\"blue square\";i:4;s:3:\"box\";i:5;s:5:\"brown\";i:6;s:12:\"brown square\";i:7;s:9:\"geometric\";i:8;s:5:\"green\";i:9;s:12:\"green square\";i:10;s:6:\"orange\";i:11;s:13:\"orange square\";i:12;s:6:\"purple\";i:13;s:13:\"purple square\";i:14;s:3:\"red\";i:15;s:10:\"red square\";i:16;s:5:\"shape\";i:17;s:6:\"square\";i:18;s:18:\"white large square\";i:19;s:6:\"yellow\";i:20;s:13:\"yellow square\";i:21;s:11:\"square-full\";i:22;s:11:\"square full\";}}s:17:\"fab fa-square-git\";a:2:{s:5:\"label\";s:10:\"Square Git\";s:6:\"search\";a:2:{i:0;s:10:\"square-git\";i:1;s:10:\"square git\";}}s:20:\"fab fa-square-github\";a:2:{s:5:\"label\";s:13:\"Square Github\";s:6:\"search\";a:3:{i:0;s:7:\"octocat\";i:1;s:13:\"square-github\";i:2;s:13:\"square github\";}}s:20:\"fab fa-square-gitlab\";a:2:{s:5:\"label\";s:13:\"Square Gitlab\";s:6:\"search\";a:2:{i:0;s:13:\"square-gitlab\";i:1;s:13:\"square gitlab\";}}s:25:\"fab fa-square-google-plus\";a:2:{s:5:\"label\";s:18:\"Square Google Plus\";s:6:\"search\";a:3:{i:0;s:14:\"social network\";i:1;s:18:\"square-google-plus\";i:2;s:18:\"square google plus\";}}s:15:\"fas fa-square-h\";a:2:{s:5:\"label\";s:8:\"Square H\";s:6:\"search\";a:8:{i:0;s:10:\"directions\";i:1;s:9:\"emergency\";i:2;s:8:\"hospital\";i:3;s:5:\"hotel\";i:4;s:6:\"letter\";i:5;s:3:\"map\";i:6;s:8:\"square-h\";i:7;s:8:\"square h\";}}s:25:\"fab fa-square-hacker-news\";a:2:{s:5:\"label\";s:18:\"Square Hacker News\";s:6:\"search\";a:2:{i:0;s:18:\"square-hacker-news\";i:1;s:18:\"square hacker news\";}}s:23:\"fab fa-square-instagram\";a:2:{s:5:\"label\";s:16:\"Square Instagram\";s:6:\"search\";a:2:{i:0;s:16:\"square-instagram\";i:1;s:16:\"square instagram\";}}s:16:\"fab fa-square-js\";a:2:{s:5:\"label\";s:9:\"Square Js\";s:6:\"search\";a:2:{i:0;s:9:\"square-js\";i:1;s:9:\"square js\";}}s:20:\"fab fa-square-lastfm\";a:2:{s:5:\"label\";s:13:\"Square Lastfm\";s:6:\"search\";a:2:{i:0;s:13:\"square-lastfm\";i:1;s:13:\"square lastfm\";}}s:24:\"fab fa-square-letterboxd\";a:2:{s:5:\"label\";s:17:\"Square Letterboxd\";s:6:\"search\";a:2:{i:0;s:17:\"square-letterboxd\";i:1;s:17:\"square letterboxd\";}}s:19:\"fas fa-square-minus\";a:2:{s:5:\"label\";s:20:\"Square Minus (solid)\";s:6:\"search\";a:10:{i:0;s:8:\"collapse\";i:1;s:6:\"delete\";i:2;s:4:\"hide\";i:3;s:6:\"minify\";i:4;s:8:\"negative\";i:5;s:6:\"remove\";i:6;s:5:\"shape\";i:7;s:5:\"trash\";i:8;s:12:\"square-minus\";i:9;s:12:\"square minus\";}}s:19:\"far fa-square-minus\";a:2:{s:5:\"label\";s:22:\"Square Minus (regular)\";s:6:\"search\";a:10:{i:0;s:8:\"collapse\";i:1;s:6:\"delete\";i:2;s:4:\"hide\";i:3;s:6:\"minify\";i:4;s:8:\"negative\";i:5;s:6:\"remove\";i:6;s:5:\"shape\";i:7;s:5:\"trash\";i:8;s:12:\"square-minus\";i:9;s:12:\"square minus\";}}s:17:\"fas fa-square-nfi\";a:2:{s:5:\"label\";s:10:\"Square Nfi\";s:6:\"search\";a:4:{i:0;s:13:\"non-food item\";i:1;s:8:\"supplies\";i:2;s:10:\"square-nfi\";i:3;s:10:\"square nfi\";}}s:27:\"fab fa-square-odnoklassniki\";a:2:{s:5:\"label\";s:20:\"Square Odnoklassniki\";s:6:\"search\";a:2:{i:0;s:20:\"square-odnoklassniki\";i:1;s:20:\"square odnoklassniki\";}}s:21:\"fas fa-square-parking\";a:2:{s:5:\"label\";s:14:\"Square Parking\";s:6:\"search\";a:7:{i:0;s:4:\"auto\";i:1;s:3:\"car\";i:2;s:6:\"garage\";i:3;s:5:\"meter\";i:4;s:7:\"parking\";i:5;s:14:\"square-parking\";i:6;s:14:\"square parking\";}}s:17:\"fas fa-square-pen\";a:2:{s:5:\"label\";s:10:\"Square Pen\";s:6:\"search\";a:7:{i:0;s:4:\"edit\";i:1;s:6:\"modify\";i:2;s:13:\"pencil-square\";i:3;s:6:\"update\";i:4;s:5:\"write\";i:5;s:10:\"square-pen\";i:6;s:10:\"square pen\";}}s:29:\"fas fa-square-person-confined\";a:2:{s:5:\"label\";s:22:\"Square Person Confined\";s:6:\"search\";a:5:{i:0;s:9:\"captivity\";i:1;s:8:\"confined\";i:2;s:3:\"uer\";i:3;s:22:\"square-person-confined\";i:4;s:22:\"square person confined\";}}s:19:\"fas fa-square-phone\";a:2:{s:5:\"label\";s:12:\"Square Phone\";s:6:\"search\";a:8:{i:0;s:4:\"call\";i:1;s:8:\"earphone\";i:2;s:6:\"number\";i:3;s:7:\"support\";i:4;s:9:\"telephone\";i:5;s:5:\"voice\";i:6;s:12:\"square-phone\";i:7;s:12:\"square phone\";}}s:24:\"fas fa-square-phone-flip\";a:2:{s:5:\"label\";s:17:\"Square Phone Flip\";s:6:\"search\";a:8:{i:0;s:4:\"call\";i:1;s:8:\"earphone\";i:2;s:6:\"number\";i:3;s:7:\"support\";i:4;s:9:\"telephone\";i:5;s:5:\"voice\";i:6;s:17:\"square-phone-flip\";i:7;s:17:\"square phone flip\";}}s:24:\"fab fa-square-pied-piper\";a:2:{s:5:\"label\";s:28:\"Pied Piper Square Logo (Old)\";s:6:\"search\";a:2:{i:0;s:17:\"square-pied-piper\";i:1;s:28:\"pied piper square logo (old)\";}}s:23:\"fab fa-square-pinterest\";a:2:{s:5:\"label\";s:16:\"Square Pinterest\";s:6:\"search\";a:2:{i:0;s:16:\"square-pinterest\";i:1;s:16:\"square pinterest\";}}s:18:\"fas fa-square-plus\";a:2:{s:5:\"label\";s:19:\"Square Plus (solid)\";s:6:\"search\";a:8:{i:0;s:3:\"add\";i:1;s:6:\"create\";i:2;s:6:\"expand\";i:3;s:3:\"new\";i:4;s:8:\"positive\";i:5;s:5:\"shape\";i:6;s:11:\"square-plus\";i:7;s:11:\"square plus\";}}s:18:\"far fa-square-plus\";a:2:{s:5:\"label\";s:21:\"Square Plus (regular)\";s:6:\"search\";a:8:{i:0;s:3:\"add\";i:1;s:6:\"create\";i:2;s:6:\"expand\";i:3;s:3:\"new\";i:4;s:8:\"positive\";i:5;s:5:\"shape\";i:6;s:11:\"square-plus\";i:7;s:11:\"square plus\";}}s:29:\"fas fa-square-poll-horizontal\";a:2:{s:5:\"label\";s:22:\"Square Poll Horizontal\";s:6:\"search\";a:10:{i:0;s:5:\"chart\";i:1;s:5:\"graph\";i:2;s:7:\"results\";i:3;s:10:\"statistics\";i:4;s:6:\"survey\";i:5;s:5:\"trend\";i:6;s:4:\"vote\";i:7;s:6:\"voting\";i:8;s:22:\"square-poll-horizontal\";i:9;s:22:\"square poll horizontal\";}}s:27:\"fas fa-square-poll-vertical\";a:2:{s:5:\"label\";s:20:\"Square Poll Vertical\";s:6:\"search\";a:11:{i:0;s:5:\"chart\";i:1;s:5:\"graph\";i:2;s:7:\"results\";i:3;s:7:\"revenue\";i:4;s:10:\"statistics\";i:5;s:6:\"survey\";i:6;s:5:\"trend\";i:7;s:4:\"vote\";i:8;s:6:\"voting\";i:9;s:20:\"square-poll-vertical\";i:10;s:20:\"square poll vertical\";}}s:20:\"fab fa-square-reddit\";a:2:{s:5:\"label\";s:13:\"Square Reddit\";s:6:\"search\";a:2:{i:0;s:13:\"square-reddit\";i:1;s:13:\"square reddit\";}}s:27:\"fas fa-square-root-variable\";a:2:{s:5:\"label\";s:20:\"Square Root Variable\";s:6:\"search\";a:6:{i:0;s:10:\"arithmetic\";i:1;s:8:\"calculus\";i:2;s:8:\"division\";i:3;s:4:\"math\";i:4;s:20:\"square-root-variable\";i:5;s:20:\"square root variable\";}}s:17:\"fas fa-square-rss\";a:2:{s:5:\"label\";s:10:\"Square Rss\";s:6:\"search\";a:7:{i:0;s:4:\"blog\";i:1;s:4:\"feed\";i:2;s:7:\"journal\";i:3;s:4:\"news\";i:4;s:7:\"writing\";i:5;s:10:\"square-rss\";i:6;s:10:\"square rss\";}}s:25:\"fas fa-square-share-nodes\";a:2:{s:5:\"label\";s:18:\"Square Share Nodes\";s:6:\"search\";a:6:{i:0;s:7:\"forward\";i:1;s:4:\"save\";i:2;s:4:\"send\";i:3;s:6:\"social\";i:4;s:18:\"square-share-nodes\";i:5;s:18:\"square share nodes\";}}s:22:\"fab fa-square-snapchat\";a:2:{s:5:\"label\";s:15:\"Snapchat Square\";s:6:\"search\";a:2:{i:0;s:15:\"square-snapchat\";i:1;s:15:\"snapchat square\";}}s:19:\"fab fa-square-steam\";a:2:{s:5:\"label\";s:12:\"Square Steam\";s:6:\"search\";a:2:{i:0;s:12:\"square-steam\";i:1;s:12:\"square steam\";}}s:21:\"fab fa-square-threads\";a:2:{s:5:\"label\";s:14:\"Square Threads\";s:6:\"search\";a:2:{i:0;s:14:\"square-threads\";i:1;s:14:\"square threads\";}}s:20:\"fab fa-square-tumblr\";a:2:{s:5:\"label\";s:13:\"Square Tumblr\";s:6:\"search\";a:2:{i:0;s:13:\"square-tumblr\";i:1;s:13:\"square tumblr\";}}s:21:\"fab fa-square-twitter\";a:2:{s:5:\"label\";s:14:\"Square Twitter\";s:6:\"search\";a:4:{i:0;s:14:\"social network\";i:1;s:5:\"tweet\";i:2;s:14:\"square-twitter\";i:3;s:14:\"square twitter\";}}s:22:\"fas fa-square-up-right\";a:2:{s:5:\"label\";s:15:\"Square Up Right\";s:6:\"search\";a:12:{i:0;s:5:\"arrow\";i:1;s:8:\"diagonal\";i:2;s:9:\"direction\";i:3;s:20:\"external-link-square\";i:4;s:13:\"intercardinal\";i:5;s:3:\"new\";i:6;s:9:\"northeast\";i:7;s:4:\"open\";i:8;s:5:\"share\";i:9;s:14:\"up-right arrow\";i:10;s:15:\"square-up-right\";i:11;s:15:\"square up right\";}}s:20:\"fab fa-square-upwork\";a:2:{s:5:\"label\";s:13:\"Square Upwork\";s:6:\"search\";a:2:{i:0;s:13:\"square-upwork\";i:1;s:13:\"square upwork\";}}s:20:\"fab fa-square-viadeo\";a:2:{s:5:\"label\";s:13:\"Square Viadeo\";s:6:\"search\";a:2:{i:0;s:13:\"square-viadeo\";i:1;s:13:\"square viadeo\";}}s:19:\"fab fa-square-vimeo\";a:2:{s:5:\"label\";s:12:\"Square Vimeo\";s:6:\"search\";a:2:{i:0;s:12:\"square-vimeo\";i:1;s:12:\"square vimeo\";}}s:19:\"fas fa-square-virus\";a:2:{s:5:\"label\";s:12:\"Square Virus\";s:6:\"search\";a:8:{i:0;s:11:\"coronavirus\";i:1;s:8:\"covid-19\";i:2;s:7:\"disease\";i:3;s:3:\"flu\";i:4;s:9:\"infection\";i:5;s:8:\"pandemic\";i:6;s:12:\"square-virus\";i:7;s:12:\"square virus\";}}s:25:\"fab fa-square-web-awesome\";a:2:{s:5:\"label\";s:18:\"Square Web Awesome\";s:6:\"search\";a:7:{i:0;s:8:\" coding\";i:1;s:7:\" crown\";i:2;s:5:\" web\";i:3;s:8:\" awesome\";i:4;s:11:\" components\";i:5;s:18:\"square-web-awesome\";i:6;s:18:\"square web awesome\";}}s:32:\"fab fa-square-web-awesome-stroke\";a:2:{s:5:\"label\";s:25:\"Square Web Awesome Stroke\";s:6:\"search\";a:7:{i:0;s:8:\" coding\";i:1;s:7:\" crown\";i:2;s:5:\" web\";i:3;s:8:\" awesome\";i:4;s:11:\" components\";i:5;s:25:\"square-web-awesome-stroke\";i:6;s:25:\"square web awesome stroke\";}}s:22:\"fab fa-square-whatsapp\";a:2:{s:5:\"label\";s:15:\"Square Whatsapp\";s:6:\"search\";a:2:{i:0;s:15:\"square-whatsapp\";i:1;s:15:\"square whatsapp\";}}s:23:\"fab fa-square-x-twitter\";a:2:{s:5:\"label\";s:16:\"Square X Twitter\";s:6:\"search\";a:5:{i:0;s:5:\" elon\";i:1;s:2:\" x\";i:2;s:7:\"twitter\";i:3;s:16:\"square-x-twitter\";i:4;s:16:\"square x twitter\";}}s:18:\"fab fa-square-xing\";a:2:{s:5:\"label\";s:11:\"Square Xing\";s:6:\"search\";a:2:{i:0;s:11:\"square-xing\";i:1;s:11:\"square xing\";}}s:19:\"fas fa-square-xmark\";a:2:{s:5:\"label\";s:12:\"Square Xmark\";s:6:\"search\";a:17:{i:0;s:5:\"close\";i:1;s:5:\"cross\";i:2;s:17:\"cross mark button\";i:3;s:9:\"incorrect\";i:4;s:4:\"mark\";i:5;s:6:\"notice\";i:6;s:12:\"notification\";i:7;s:6:\"notify\";i:8;s:7:\"problem\";i:9;s:6:\"square\";i:10;s:7:\"uncheck\";i:11;s:6:\"window\";i:12;s:5:\"wrong\";i:13;s:1:\"x\";i:14;s:2:\"×\";i:15;s:12:\"square-xmark\";i:16;s:12:\"square xmark\";}}s:21:\"fab fa-square-youtube\";a:2:{s:5:\"label\";s:14:\"Square Youtube\";s:6:\"search\";a:2:{i:0;s:14:\"square-youtube\";i:1;s:14:\"square youtube\";}}s:18:\"fab fa-squarespace\";a:2:{s:5:\"label\";s:11:\"Squarespace\";s:6:\"search\";a:1:{i:0;s:11:\"squarespace\";}}s:21:\"fab fa-stack-exchange\";a:2:{s:5:\"label\";s:14:\"Stack Exchange\";s:6:\"search\";a:2:{i:0;s:14:\"stack-exchange\";i:1;s:14:\"stack exchange\";}}s:21:\"fab fa-stack-overflow\";a:2:{s:5:\"label\";s:14:\"Stack Overflow\";s:6:\"search\";a:2:{i:0;s:14:\"stack-overflow\";i:1;s:14:\"stack overflow\";}}s:16:\"fab fa-stackpath\";a:2:{s:5:\"label\";s:9:\"Stackpath\";s:6:\"search\";a:1:{i:0;s:9:\"stackpath\";}}s:18:\"fas fa-staff-snake\";a:2:{s:5:\"label\";s:11:\"Staff Snake\";s:6:\"search\";a:7:{i:0;s:9:\"asclepius\";i:1;s:9:\"asklepian\";i:2;s:6:\"health\";i:3;s:7:\"serpent\";i:4;s:8:\"wellness\";i:5;s:11:\"staff-snake\";i:6;s:11:\"staff snake\";}}s:13:\"fas fa-stairs\";a:2:{s:5:\"label\";s:6:\"Stairs\";s:6:\"search\";a:4:{i:0;s:4:\"exit\";i:1;s:5:\"steps\";i:2;s:2:\"up\";i:3;s:6:\"stairs\";}}s:12:\"fas fa-stamp\";a:2:{s:5:\"label\";s:5:\"Stamp\";s:6:\"search\";a:6:{i:0;s:3:\"art\";i:1;s:11:\"certificate\";i:2;s:7:\"imprint\";i:3;s:6:\"rubber\";i:4;s:4:\"seal\";i:5;s:5:\"stamp\";}}s:14:\"fas fa-stapler\";a:2:{s:5:\"label\";s:7:\"Stapler\";s:6:\"search\";a:6:{i:0;s:7:\"desktop\";i:1;s:6:\"milton\";i:2;s:6:\"office\";i:3;s:9:\"paperclip\";i:4;s:6:\"staple\";i:5;s:7:\"stapler\";}}s:11:\"fas fa-star\";a:2:{s:5:\"label\";s:12:\"Star (solid)\";s:6:\"search\";a:10:{i:0;s:11:\"achievement\";i:1;s:5:\"award\";i:2;s:8:\"favorite\";i:3;s:9:\"important\";i:4;s:5:\"night\";i:5;s:7:\"quality\";i:6;s:6:\"rating\";i:7;s:5:\"score\";i:8;s:4:\"star\";i:9;s:3:\"vip\";}}s:11:\"far fa-star\";a:2:{s:5:\"label\";s:14:\"Star (regular)\";s:6:\"search\";a:10:{i:0;s:11:\"achievement\";i:1;s:5:\"award\";i:2;s:8:\"favorite\";i:3;s:9:\"important\";i:4;s:5:\"night\";i:5;s:7:\"quality\";i:6;s:6:\"rating\";i:7;s:5:\"score\";i:8;s:4:\"star\";i:9;s:3:\"vip\";}}s:24:\"fas fa-star-and-crescent\";a:2:{s:5:\"label\";s:17:\"Star And Crescent\";s:6:\"search\";a:6:{i:0;s:6:\"Muslim\";i:1;s:5:\"islam\";i:2;s:6:\"muslim\";i:3;s:8:\"religion\";i:4;s:17:\"star and crescent\";i:5;s:17:\"star-and-crescent\";}}s:16:\"fas fa-star-half\";a:2:{s:5:\"label\";s:17:\"Star Half (solid)\";s:6:\"search\";a:8:{i:0;s:11:\"achievement\";i:1;s:5:\"award\";i:2;s:6:\"rating\";i:3;s:5:\"score\";i:4;s:15:\"star-half-empty\";i:5;s:14:\"star-half-full\";i:6;s:9:\"star-half\";i:7;s:9:\"star half\";}}s:16:\"far fa-star-half\";a:2:{s:5:\"label\";s:19:\"Star Half (regular)\";s:6:\"search\";a:8:{i:0;s:11:\"achievement\";i:1;s:5:\"award\";i:2;s:6:\"rating\";i:3;s:5:\"score\";i:4;s:15:\"star-half-empty\";i:5;s:14:\"star-half-full\";i:6;s:9:\"star-half\";i:7;s:9:\"star half\";}}s:23:\"fas fa-star-half-stroke\";a:2:{s:5:\"label\";s:24:\"Star Half Stroke (solid)\";s:6:\"search\";a:8:{i:0;s:11:\"achievement\";i:1;s:5:\"award\";i:2;s:6:\"rating\";i:3;s:5:\"score\";i:4;s:15:\"star-half-empty\";i:5;s:14:\"star-half-full\";i:6;s:16:\"star-half-stroke\";i:7;s:16:\"star half stroke\";}}s:23:\"far fa-star-half-stroke\";a:2:{s:5:\"label\";s:26:\"Star Half Stroke (regular)\";s:6:\"search\";a:8:{i:0;s:11:\"achievement\";i:1;s:5:\"award\";i:2;s:6:\"rating\";i:3;s:5:\"score\";i:4;s:15:\"star-half-empty\";i:5;s:14:\"star-half-full\";i:6;s:16:\"star-half-stroke\";i:7;s:16:\"star half stroke\";}}s:20:\"fas fa-star-of-david\";a:2:{s:5:\"label\";s:13:\"Star Of David\";s:6:\"search\";a:10:{i:0;s:5:\"David\";i:1;s:3:\"Jew\";i:2;s:6:\"Jewish\";i:3;s:6:\"jewish\";i:4;s:7:\"judaism\";i:5;s:8:\"religion\";i:6;s:4:\"star\";i:7;s:13:\"star of David\";i:8;s:13:\"star-of-david\";i:9;s:13:\"star of david\";}}s:19:\"fas fa-star-of-life\";a:2:{s:5:\"label\";s:12:\"Star Of Life\";s:6:\"search\";a:7:{i:0;s:6:\"doctor\";i:1;s:3:\"emt\";i:2;s:9:\"first aid\";i:3;s:6:\"health\";i:4;s:7:\"medical\";i:5;s:12:\"star-of-life\";i:6;s:12:\"star of life\";}}s:17:\"fab fa-staylinked\";a:2:{s:5:\"label\";s:10:\"StayLinked\";s:6:\"search\";a:2:{i:0;s:6:\"linkin\";i:1;s:10:\"staylinked\";}}s:12:\"fab fa-steam\";a:2:{s:5:\"label\";s:5:\"Steam\";s:6:\"search\";a:1:{i:0;s:5:\"steam\";}}s:19:\"fab fa-steam-symbol\";a:2:{s:5:\"label\";s:12:\"Steam Symbol\";s:6:\"search\";a:2:{i:0;s:12:\"steam-symbol\";i:1;s:12:\"steam symbol\";}}s:20:\"fas fa-sterling-sign\";a:2:{s:5:\"label\";s:13:\"Sterling Sign\";s:6:\"search\";a:4:{i:0;s:10:\"Pound Sign\";i:1;s:8:\"currency\";i:2;s:13:\"sterling-sign\";i:3;s:13:\"sterling sign\";}}s:18:\"fas fa-stethoscope\";a:2:{s:5:\"label\";s:11:\"Stethoscope\";s:6:\"search\";a:11:{i:0;s:8:\"covid-19\";i:1;s:9:\"diagnosis\";i:2;s:6:\"doctor\";i:3;s:20:\"general practitioner\";i:4;s:5:\"heart\";i:5;s:8:\"hospital\";i:6;s:9:\"infirmary\";i:7;s:8:\"medicine\";i:8;s:6:\"office\";i:9;s:10:\"outpatient\";i:10;s:11:\"stethoscope\";}}s:19:\"fab fa-sticker-mule\";a:2:{s:5:\"label\";s:12:\"Sticker Mule\";s:6:\"search\";a:2:{i:0;s:12:\"sticker-mule\";i:1;s:12:\"sticker mule\";}}s:11:\"fas fa-stop\";a:2:{s:5:\"label\";s:4:\"Stop\";s:6:\"search\";a:5:{i:0;s:5:\"block\";i:1;s:3:\"box\";i:2;s:6:\"square\";i:3;s:4:\"stop\";i:4;s:11:\"stop button\";}}s:16:\"fas fa-stopwatch\";a:2:{s:5:\"label\";s:9:\"Stopwatch\";s:6:\"search\";a:5:{i:0;s:5:\"clock\";i:1;s:8:\"reminder\";i:2;s:9:\"stopwatch\";i:3;s:4:\"time\";i:4;s:7:\"waiting\";}}s:19:\"fas fa-stopwatch-20\";a:2:{s:5:\"label\";s:12:\"Stopwatch 20\";s:6:\"search\";a:11:{i:0;s:4:\"ABCs\";i:1;s:9:\"countdown\";i:2;s:8:\"covid-19\";i:3;s:14:\"happy birthday\";i:4;s:14:\"i will survive\";i:5;s:8:\"reminder\";i:6;s:7:\"seconds\";i:7;s:4:\"time\";i:8;s:5:\"timer\";i:9;s:12:\"stopwatch-20\";i:10;s:12:\"stopwatch 20\";}}s:12:\"fas fa-store\";a:2:{s:5:\"label\";s:5:\"Store\";s:6:\"search\";a:7:{i:0;s:6:\"bodega\";i:1;s:8:\"building\";i:2;s:3:\"buy\";i:3;s:6:\"market\";i:4;s:8:\"purchase\";i:5;s:8:\"shopping\";i:6;s:5:\"store\";}}s:18:\"fas fa-store-slash\";a:2:{s:5:\"label\";s:11:\"Store Slash\";s:6:\"search\";a:9:{i:0;s:8:\"building\";i:1;s:3:\"buy\";i:2;s:6:\"closed\";i:3;s:8:\"covid-19\";i:4;s:8:\"disabled\";i:5;s:8:\"purchase\";i:6;s:8:\"shopping\";i:7;s:11:\"store-slash\";i:8;s:11:\"store slash\";}}s:13:\"fab fa-strava\";a:2:{s:5:\"label\";s:6:\"Strava\";s:6:\"search\";a:1:{i:0;s:6:\"strava\";}}s:18:\"fas fa-street-view\";a:2:{s:5:\"label\";s:11:\"Street View\";s:6:\"search\";a:7:{i:0;s:10:\"directions\";i:1;s:8:\"location\";i:2;s:3:\"map\";i:3;s:10:\"navigation\";i:4;s:3:\"uer\";i:5;s:11:\"street-view\";i:6;s:11:\"street view\";}}s:20:\"fas fa-strikethrough\";a:2:{s:5:\"label\";s:13:\"Strikethrough\";s:6:\"search\";a:8:{i:0;s:6:\"cancel\";i:1;s:4:\"edit\";i:2;s:4:\"font\";i:3;s:6:\"format\";i:4;s:6:\"modify\";i:5;s:4:\"text\";i:6;s:4:\"type\";i:7;s:13:\"strikethrough\";}}s:13:\"fab fa-stripe\";a:2:{s:5:\"label\";s:6:\"Stripe\";s:6:\"search\";a:1:{i:0;s:6:\"stripe\";}}s:15:\"fab fa-stripe-s\";a:2:{s:5:\"label\";s:8:\"Stripe S\";s:6:\"search\";a:2:{i:0;s:8:\"stripe-s\";i:1;s:8:\"stripe s\";}}s:18:\"fas fa-stroopwafel\";a:2:{s:5:\"label\";s:11:\"Stroopwafel\";s:6:\"search\";a:6:{i:0;s:7:\"caramel\";i:1;s:6:\"cookie\";i:2;s:7:\"dessert\";i:3;s:6:\"sweets\";i:4;s:6:\"waffle\";i:5;s:11:\"stroopwafel\";}}s:14:\"fab fa-stubber\";a:2:{s:5:\"label\";s:7:\"Stubber\";s:6:\"search\";a:1:{i:0;s:7:\"stubber\";}}s:19:\"fab fa-studiovinari\";a:2:{s:5:\"label\";s:13:\"Studio Vinari\";s:6:\"search\";a:2:{i:0;s:12:\"studiovinari\";i:1;s:13:\"studio vinari\";}}s:18:\"fab fa-stumbleupon\";a:2:{s:5:\"label\";s:16:\"StumbleUpon Logo\";s:6:\"search\";a:2:{i:0;s:11:\"stumbleupon\";i:1;s:16:\"stumbleupon logo\";}}s:25:\"fab fa-stumbleupon-circle\";a:2:{s:5:\"label\";s:18:\"StumbleUpon Circle\";s:6:\"search\";a:2:{i:0;s:18:\"stumbleupon-circle\";i:1;s:18:\"stumbleupon circle\";}}s:16:\"fas fa-subscript\";a:2:{s:5:\"label\";s:9:\"Subscript\";s:6:\"search\";a:6:{i:0;s:4:\"edit\";i:1;s:4:\"font\";i:2;s:6:\"format\";i:3;s:4:\"text\";i:4;s:4:\"type\";i:5;s:9:\"subscript\";}}s:15:\"fas fa-suitcase\";a:2:{s:5:\"label\";s:8:\"Suitcase\";s:6:\"search\";a:7:{i:0;s:7:\"baggage\";i:1;s:7:\"luggage\";i:2;s:4:\"move\";i:3;s:7:\"packing\";i:4;s:8:\"suitcase\";i:5;s:6:\"travel\";i:6;s:4:\"trip\";}}s:23:\"fas fa-suitcase-medical\";a:2:{s:5:\"label\";s:16:\"Suitcase Medical\";s:6:\"search\";a:9:{i:0;s:9:\"first aid\";i:1;s:8:\"firstaid\";i:2;s:6:\"health\";i:3;s:4:\"help\";i:4;s:7:\"medical\";i:5;s:6:\"supply\";i:6;s:7:\"support\";i:7;s:16:\"suitcase-medical\";i:8;s:16:\"suitcase medical\";}}s:23:\"fas fa-suitcase-rolling\";a:2:{s:5:\"label\";s:16:\"Suitcase Rolling\";s:6:\"search\";a:8:{i:0;s:7:\"baggage\";i:1;s:7:\"luggage\";i:2;s:4:\"move\";i:3;s:8:\"suitcase\";i:4;s:6:\"travel\";i:5;s:4:\"trip\";i:6;s:16:\"suitcase-rolling\";i:7;s:16:\"suitcase rolling\";}}s:10:\"fas fa-sun\";a:2:{s:5:\"label\";s:11:\"Sun (solid)\";s:6:\"search\";a:12:{i:0;s:6:\"bright\";i:1;s:8:\"brighten\";i:2;s:8:\"contrast\";i:3;s:3:\"day\";i:4;s:7:\"lighter\";i:5;s:4:\"rays\";i:6;s:3:\"sol\";i:7;s:5:\"solar\";i:8;s:4:\"star\";i:9;s:3:\"sun\";i:10;s:5:\"sunny\";i:11;s:7:\"weather\";}}s:10:\"far fa-sun\";a:2:{s:5:\"label\";s:13:\"Sun (regular)\";s:6:\"search\";a:12:{i:0;s:6:\"bright\";i:1;s:8:\"brighten\";i:2;s:8:\"contrast\";i:3;s:3:\"day\";i:4;s:7:\"lighter\";i:5;s:4:\"rays\";i:6;s:3:\"sol\";i:7;s:5:\"solar\";i:8;s:4:\"star\";i:9;s:3:\"sun\";i:10;s:5:\"sunny\";i:11;s:7:\"weather\";}}s:21:\"fas fa-sun-plant-wilt\";a:2:{s:5:\"label\";s:14:\"Sun Plant Wilt\";s:6:\"search\";a:5:{i:0;s:4:\"arid\";i:1;s:5:\"droop\";i:2;s:7:\"drought\";i:3;s:14:\"sun-plant-wilt\";i:4;s:14:\"sun plant wilt\";}}s:18:\"fab fa-superpowers\";a:2:{s:5:\"label\";s:11:\"Superpowers\";s:6:\"search\";a:1:{i:0;s:11:\"superpowers\";}}s:18:\"fas fa-superscript\";a:2:{s:5:\"label\";s:11:\"Superscript\";s:6:\"search\";a:7:{i:0;s:4:\"edit\";i:1;s:11:\"exponential\";i:2;s:4:\"font\";i:3;s:6:\"format\";i:4;s:4:\"text\";i:5;s:4:\"type\";i:6;s:11:\"superscript\";}}s:13:\"fab fa-supple\";a:2:{s:5:\"label\";s:6:\"Supple\";s:6:\"search\";a:1:{i:0;s:6:\"supple\";}}s:11:\"fab fa-suse\";a:2:{s:5:\"label\";s:4:\"Suse\";s:6:\"search\";a:4:{i:0;s:5:\"linux\";i:1;s:16:\"operating system\";i:2;s:2:\"os\";i:3;s:4:\"suse\";}}s:17:\"fas fa-swatchbook\";a:2:{s:5:\"label\";s:10:\"Swatchbook\";s:6:\"search\";a:6:{i:0;s:7:\"Pantone\";i:1;s:5:\"color\";i:2;s:6:\"design\";i:3;s:3:\"hue\";i:4;s:7:\"palette\";i:5;s:10:\"swatchbook\";}}s:12:\"fab fa-swift\";a:2:{s:5:\"label\";s:5:\"Swift\";s:6:\"search\";a:1:{i:0;s:5:\"swift\";}}s:14:\"fab fa-symfony\";a:2:{s:5:\"label\";s:7:\"Symfony\";s:6:\"search\";a:1:{i:0;s:7:\"symfony\";}}s:16:\"fas fa-synagogue\";a:2:{s:5:\"label\";s:9:\"Synagogue\";s:6:\"search\";a:9:{i:0;s:3:\"Jew\";i:1;s:6:\"Jewish\";i:2;s:8:\"building\";i:3;s:6:\"jewish\";i:4;s:7:\"judaism\";i:5;s:8:\"religion\";i:6;s:13:\"star of david\";i:7;s:9:\"synagogue\";i:8;s:6:\"temple\";}}s:14:\"fas fa-syringe\";a:2:{s:5:\"label\";s:7:\"Syringe\";s:6:\"search\";a:11:{i:0;s:8:\"covid-19\";i:1;s:6:\"doctor\";i:2;s:13:\"immunizations\";i:3;s:7:\"medical\";i:4;s:8:\"medicine\";i:5;s:6:\"needle\";i:6;s:4:\"shot\";i:7;s:4:\"sick\";i:8;s:7:\"syringe\";i:9;s:9:\"vaccinate\";i:10;s:7:\"vaccine\";}}s:8:\"fas fa-t\";a:2:{s:5:\"label\";s:1:\"T\";s:6:\"search\";a:4:{i:0;s:22:\"Latin Capital Letter T\";i:1;s:20:\"Latin Small Letter T\";i:2;s:6:\"letter\";i:3;s:1:\"t\";}}s:12:\"fas fa-table\";a:2:{s:5:\"label\";s:5:\"Table\";s:6:\"search\";a:5:{i:0;s:8:\"category\";i:1;s:4:\"data\";i:2;s:5:\"excel\";i:3;s:11:\"spreadsheet\";i:4;s:5:\"table\";}}s:18:\"fas fa-table-cells\";a:2:{s:5:\"label\";s:11:\"Table Cells\";s:6:\"search\";a:9:{i:0;s:6:\" excel\";i:1;s:6:\"blocks\";i:2;s:5:\"boxes\";i:3;s:8:\"category\";i:4;s:4:\"grid\";i:5;s:11:\"spreadsheet\";i:6;s:7:\"squares\";i:7;s:11:\"table-cells\";i:8;s:11:\"table cells\";}}s:30:\"fas fa-table-cells-column-lock\";a:2:{s:5:\"label\";s:23:\"Table Cells Column Lock\";s:6:\"search\";a:11:{i:0;s:7:\" blocks\";i:1;s:6:\" boxes\";i:2;s:7:\" column\";i:3;s:6:\" excel\";i:4;s:5:\" grid\";i:5;s:5:\" lock\";i:6;s:8:\" squares\";i:7;s:8:\"category\";i:8;s:11:\"spreadsheet\";i:9;s:23:\"table-cells-column-lock\";i:10;s:23:\"table cells column lock\";}}s:24:\"fas fa-table-cells-large\";a:2:{s:5:\"label\";s:17:\"Table Cells Large\";s:6:\"search\";a:9:{i:0;s:6:\" excel\";i:1;s:6:\"blocks\";i:2;s:5:\"boxes\";i:3;s:8:\"category\";i:4;s:4:\"grid\";i:5;s:11:\"spreadsheet\";i:6;s:7:\"squares\";i:7;s:17:\"table-cells-large\";i:8;s:17:\"table cells large\";}}s:27:\"fas fa-table-cells-row-lock\";a:2:{s:5:\"label\";s:20:\"Table Cells Row Lock\";s:6:\"search\";a:12:{i:0;s:8:\" blocks\";i:1;s:7:\" boxes\";i:2;s:8:\" column\";i:3;s:6:\" grid\";i:4;s:9:\" squares\";i:5;s:9:\" category\";i:6;s:7:\" column\";i:7;s:6:\" excel\";i:8;s:5:\" lock\";i:10;s:12:\" spreadsheet\";i:11;s:20:\"table-cells-row-lock\";i:12;s:20:\"table cells row lock\";}}s:20:\"fas fa-table-columns\";a:2:{s:5:\"label\";s:13:\"Table Columns\";s:6:\"search\";a:8:{i:0;s:7:\"browser\";i:1;s:8:\"category\";i:2;s:9:\"dashboard\";i:3;s:8:\"organize\";i:4;s:5:\"panes\";i:5;s:5:\"split\";i:6;s:13:\"table-columns\";i:7;s:13:\"table columns\";}}s:17:\"fas fa-table-list\";a:2:{s:5:\"label\";s:10:\"Table List\";s:6:\"search\";a:12:{i:0;s:8:\"category\";i:1;s:10:\"cheatsheet\";i:2;s:9:\"checklist\";i:3;s:9:\"completed\";i:4;s:4:\"done\";i:5;s:8:\"finished\";i:6;s:2:\"ol\";i:7;s:7:\"summary\";i:8;s:4:\"todo\";i:9;s:2:\"ul\";i:10;s:10:\"table-list\";i:11;s:10:\"table list\";}}s:31:\"fas fa-table-tennis-paddle-ball\";a:2:{s:5:\"label\";s:24:\"Table Tennis Paddle Ball\";s:6:\"search\";a:8:{i:0;s:4:\"ball\";i:1;s:3:\"bat\";i:2;s:4:\"game\";i:3;s:6:\"paddle\";i:4;s:9:\"ping pong\";i:5;s:12:\"table tennis\";i:6;s:24:\"table-tennis-paddle-ball\";i:7;s:24:\"table tennis paddle ball\";}}s:13:\"fas fa-tablet\";a:2:{s:5:\"label\";s:6:\"Tablet\";s:6:\"search\";a:4:{i:0;s:6:\"device\";i:1;s:6:\"kindle\";i:2;s:6:\"screen\";i:3;s:6:\"tablet\";}}s:20:\"fas fa-tablet-button\";a:2:{s:5:\"label\";s:13:\"Tablet Button\";s:6:\"search\";a:7:{i:0;s:5:\"apple\";i:1;s:6:\"device\";i:2;s:4:\"ipad\";i:3;s:6:\"kindle\";i:4;s:6:\"screen\";i:5;s:13:\"tablet-button\";i:6;s:13:\"tablet button\";}}s:27:\"fas fa-tablet-screen-button\";a:2:{s:5:\"label\";s:20:\"Tablet Screen Button\";s:6:\"search\";a:7:{i:0;s:5:\"apple\";i:1;s:6:\"device\";i:2;s:4:\"ipad\";i:3;s:6:\"kindle\";i:4;s:6:\"screen\";i:5;s:20:\"tablet-screen-button\";i:6;s:20:\"tablet screen button\";}}s:14:\"fas fa-tablets\";a:2:{s:5:\"label\";s:7:\"Tablets\";s:6:\"search\";a:5:{i:0;s:5:\"drugs\";i:1;s:8:\"medicine\";i:2;s:5:\"pills\";i:3;s:12:\"prescription\";i:4;s:7:\"tablets\";}}s:25:\"fas fa-tachograph-digital\";a:2:{s:5:\"label\";s:18:\"Tachograph Digital\";s:6:\"search\";a:6:{i:0;s:4:\"data\";i:1;s:8:\"distance\";i:2;s:5:\"speed\";i:3;s:10:\"tachometer\";i:4;s:18:\"tachograph-digital\";i:5;s:18:\"tachograph digital\";}}s:10:\"fas fa-tag\";a:2:{s:5:\"label\";s:3:\"Tag\";s:6:\"search\";a:6:{i:0;s:8:\"discount\";i:1;s:4:\"labe\";i:2;s:5:\"label\";i:3;s:5:\"price\";i:4;s:8:\"shopping\";i:5;s:3:\"tag\";}}s:11:\"fas fa-tags\";a:2:{s:5:\"label\";s:4:\"Tags\";s:6:\"search\";a:5:{i:0;s:8:\"discount\";i:1;s:5:\"label\";i:2;s:5:\"price\";i:3;s:8:\"shopping\";i:4;s:4:\"tags\";}}s:11:\"fas fa-tape\";a:2:{s:5:\"label\";s:4:\"Tape\";s:6:\"search\";a:4:{i:0;s:6:\"design\";i:1;s:7:\"package\";i:2;s:6:\"sticky\";i:3;s:4:\"tape\";}}s:11:\"fas fa-tarp\";a:2:{s:5:\"label\";s:4:\"Tarp\";s:6:\"search\";a:4:{i:0;s:10:\"protection\";i:1;s:4:\"tarp\";i:2;s:4:\"tent\";i:3;s:10:\"waterproof\";}}s:19:\"fas fa-tarp-droplet\";a:2:{s:5:\"label\";s:12:\"Tarp Droplet\";s:6:\"search\";a:6:{i:0;s:10:\"protection\";i:1;s:4:\"tarp\";i:2;s:4:\"tent\";i:3;s:10:\"waterproof\";i:4;s:12:\"tarp-droplet\";i:5;s:12:\"tarp droplet\";}}s:11:\"fas fa-taxi\";a:2:{s:5:\"label\";s:4:\"Taxi\";s:6:\"search\";a:13:{i:0;s:3:\"cab\";i:1;s:6:\"cabbie\";i:2;s:3:\"car\";i:3;s:11:\"car service\";i:4;s:4:\"lyft\";i:5;s:7:\"machine\";i:6;s:8:\"oncoming\";i:7;s:13:\"oncoming taxi\";i:8;s:4:\"taxi\";i:9;s:14:\"transportation\";i:10;s:6:\"travel\";i:11;s:4:\"uber\";i:12;s:7:\"vehicle\";}}s:16:\"fab fa-teamspeak\";a:2:{s:5:\"label\";s:9:\"Teamspeak\";s:6:\"search\";a:1:{i:0;s:9:\"teamspeak\";}}s:12:\"fas fa-teeth\";a:2:{s:5:\"label\";s:5:\"Teeth\";s:6:\"search\";a:8:{i:0;s:4:\"bite\";i:1;s:6:\"dental\";i:2;s:7:\"dentist\";i:3;s:4:\"gums\";i:4;s:5:\"mouth\";i:5;s:5:\"smile\";i:6;s:5:\"tooth\";i:7;s:5:\"teeth\";}}s:17:\"fas fa-teeth-open\";a:2:{s:5:\"label\";s:10:\"Teeth Open\";s:6:\"search\";a:8:{i:0;s:6:\"dental\";i:1;s:7:\"dentist\";i:2;s:9:\"gums bite\";i:3;s:5:\"mouth\";i:4;s:5:\"smile\";i:5;s:5:\"tooth\";i:6;s:10:\"teeth-open\";i:7;s:10:\"teeth open\";}}s:15:\"fab fa-telegram\";a:2:{s:5:\"label\";s:8:\"Telegram\";s:6:\"search\";a:1:{i:0;s:8:\"telegram\";}}s:29:\"fas fa-temperature-arrow-down\";a:2:{s:5:\"label\";s:22:\"Temperature Arrow Down\";s:6:\"search\";a:8:{i:0;s:15:\"air conditioner\";i:1;s:4:\"cold\";i:2;s:6:\"heater\";i:3;s:7:\"mercury\";i:4;s:11:\"thermometer\";i:5;s:6:\"winter\";i:6;s:22:\"temperature-arrow-down\";i:7;s:22:\"temperature arrow down\";}}s:27:\"fas fa-temperature-arrow-up\";a:2:{s:5:\"label\";s:20:\"Temperature Arrow Up\";s:6:\"search\";a:8:{i:0;s:15:\"air conditioner\";i:1;s:4:\"cold\";i:2;s:6:\"heater\";i:3;s:7:\"mercury\";i:4;s:11:\"thermometer\";i:5;s:6:\"winter\";i:6;s:20:\"temperature-arrow-up\";i:7;s:20:\"temperature arrow up\";}}s:24:\"fas fa-temperature-empty\";a:2:{s:5:\"label\";s:17:\"Temperature Empty\";s:6:\"search\";a:6:{i:0;s:4:\"cold\";i:1;s:7:\"mercury\";i:2;s:6:\"status\";i:3;s:11:\"temperature\";i:4;s:17:\"temperature-empty\";i:5;s:17:\"temperature empty\";}}s:23:\"fas fa-temperature-full\";a:2:{s:5:\"label\";s:16:\"Temperature Full\";s:6:\"search\";a:7:{i:0;s:5:\"fever\";i:1;s:3:\"hot\";i:2;s:7:\"mercury\";i:3;s:6:\"status\";i:4;s:11:\"temperature\";i:5;s:16:\"temperature-full\";i:6;s:16:\"temperature full\";}}s:23:\"fas fa-temperature-half\";a:2:{s:5:\"label\";s:16:\"Temperature Half\";s:6:\"search\";a:7:{i:0;s:7:\"mercury\";i:1;s:6:\"status\";i:2;s:11:\"temperature\";i:3;s:11:\"thermometer\";i:4;s:7:\"weather\";i:5;s:16:\"temperature-half\";i:6;s:16:\"temperature half\";}}s:23:\"fas fa-temperature-high\";a:2:{s:5:\"label\";s:16:\"Temperature High\";s:6:\"search\";a:8:{i:0;s:4:\"cook\";i:1;s:8:\"covid-19\";i:2;s:7:\"mercury\";i:3;s:6:\"summer\";i:4;s:11:\"thermometer\";i:5;s:4:\"warm\";i:6;s:16:\"temperature-high\";i:7;s:16:\"temperature high\";}}s:22:\"fas fa-temperature-low\";a:2:{s:5:\"label\";s:15:\"Temperature Low\";s:6:\"search\";a:8:{i:0;s:4:\"cold\";i:1;s:4:\"cool\";i:2;s:8:\"covid-19\";i:3;s:7:\"mercury\";i:4;s:11:\"thermometer\";i:5;s:6:\"winter\";i:6;s:15:\"temperature-low\";i:7;s:15:\"temperature low\";}}s:26:\"fas fa-temperature-quarter\";a:2:{s:5:\"label\";s:19:\"Temperature Quarter\";s:6:\"search\";a:5:{i:0;s:7:\"mercury\";i:1;s:6:\"status\";i:2;s:11:\"temperature\";i:3;s:19:\"temperature-quarter\";i:4;s:19:\"temperature quarter\";}}s:33:\"fas fa-temperature-three-quarters\";a:2:{s:5:\"label\";s:26:\"Temperature Three Quarters\";s:6:\"search\";a:5:{i:0;s:7:\"mercury\";i:1;s:6:\"status\";i:2;s:11:\"temperature\";i:3;s:26:\"temperature-three-quarters\";i:4;s:26:\"temperature three quarters\";}}s:20:\"fab fa-tencent-weibo\";a:2:{s:5:\"label\";s:13:\"Tencent Weibo\";s:6:\"search\";a:2:{i:0;s:13:\"tencent-weibo\";i:1;s:13:\"tencent weibo\";}}s:17:\"fas fa-tenge-sign\";a:2:{s:5:\"label\";s:10:\"Tenge Sign\";s:6:\"search\";a:4:{i:0;s:10:\"Tenge Sign\";i:1;s:8:\"currency\";i:2;s:10:\"tenge-sign\";i:3;s:10:\"tenge sign\";}}s:11:\"fas fa-tent\";a:2:{s:5:\"label\";s:4:\"Tent\";s:6:\"search\";a:6:{i:0;s:7:\"bivouac\";i:1;s:10:\"campground\";i:2;s:8:\"campsite\";i:3;s:7:\"refugee\";i:4;s:7:\"shelter\";i:5;s:4:\"tent\";}}s:30:\"fas fa-tent-arrow-down-to-line\";a:2:{s:5:\"label\";s:23:\"Tent Arrow Down To Line\";s:6:\"search\";a:11:{i:0;s:8:\" bivouac\";i:1;s:11:\" campground\";i:2;s:8:\" refugee\";i:3;s:8:\" shelter\";i:4;s:5:\" tent\";i:5;s:8:\"campsite\";i:6;s:9:\"permanent\";i:7;s:7:\"refugee\";i:8;s:7:\"shelter\";i:9;s:23:\"tent-arrow-down-to-line\";i:10;s:23:\"tent arrow down to line\";}}s:28:\"fas fa-tent-arrow-left-right\";a:2:{s:5:\"label\";s:21:\"Tent Arrow Left Right\";s:6:\"search\";a:11:{i:0;s:8:\" bivouac\";i:1;s:11:\" campground\";i:2;s:8:\" refugee\";i:3;s:8:\" shelter\";i:4;s:5:\" tent\";i:5;s:8:\"campsite\";i:6;s:7:\"refugee\";i:7;s:7:\"shelter\";i:8;s:10:\"transition\";i:9;s:21:\"tent-arrow-left-right\";i:10;s:21:\"tent arrow left right\";}}s:27:\"fas fa-tent-arrow-turn-left\";a:2:{s:5:\"label\";s:20:\"Tent Arrow Turn Left\";s:6:\"search\";a:11:{i:0;s:8:\" bivouac\";i:1;s:11:\" campground\";i:2;s:8:\" refugee\";i:3;s:8:\" shelter\";i:4;s:5:\" tent\";i:5;s:8:\"campsite\";i:6;s:7:\"refugee\";i:7;s:7:\"shelter\";i:8;s:9:\"temporary\";i:9;s:20:\"tent-arrow-turn-left\";i:10;s:20:\"tent arrow turn left\";}}s:23:\"fas fa-tent-arrows-down\";a:2:{s:5:\"label\";s:16:\"Tent Arrows Down\";s:6:\"search\";a:12:{i:0;s:8:\" bivouac\";i:1;s:11:\" campground\";i:2;s:8:\" refugee\";i:3;s:8:\" shelter\";i:4;s:5:\" tent\";i:5;s:8:\"campsite\";i:6;s:6:\"insert\";i:7;s:7:\"refugee\";i:8;s:7:\"shelter\";i:9;s:11:\"spontaneous\";i:10;s:16:\"tent-arrows-down\";i:11;s:16:\"tent arrows down\";}}s:12:\"fas fa-tents\";a:2:{s:5:\"label\";s:5:\"Tents\";s:6:\"search\";a:12:{i:0;s:8:\" bivouac\";i:1;s:11:\" campground\";i:2;s:8:\" refugee\";i:3;s:8:\" shelter\";i:4;s:5:\" tent\";i:5;s:7:\"bivouac\";i:6;s:10:\"campground\";i:7;s:8:\"campsite\";i:8;s:7:\"refugee\";i:9;s:7:\"shelter\";i:10;s:4:\"tent\";i:11;s:5:\"tents\";}}s:15:\"fas fa-terminal\";a:2:{s:5:\"label\";s:8:\"Terminal\";s:6:\"search\";a:7:{i:0;s:4:\"code\";i:1;s:6:\"coding\";i:2;s:7:\"command\";i:3;s:7:\"console\";i:4;s:11:\"development\";i:5;s:6:\"prompt\";i:6;s:8:\"terminal\";}}s:18:\"fas fa-text-height\";a:2:{s:5:\"label\";s:11:\"Text Height\";s:6:\"search\";a:8:{i:0;s:4:\"edit\";i:1;s:4:\"font\";i:2;s:6:\"format\";i:3;s:6:\"modify\";i:4;s:4:\"text\";i:5;s:4:\"type\";i:6;s:11:\"text-height\";i:7;s:11:\"text height\";}}s:17:\"fas fa-text-slash\";a:2:{s:5:\"label\";s:10:\"Text Slash\";s:6:\"search\";a:9:{i:0;s:6:\"cancel\";i:1;s:8:\"disabled\";i:2;s:4:\"font\";i:3;s:6:\"format\";i:4;s:6:\"remove\";i:5;s:5:\"style\";i:6;s:4:\"text\";i:7;s:10:\"text-slash\";i:8;s:10:\"text slash\";}}s:17:\"fas fa-text-width\";a:2:{s:5:\"label\";s:10:\"Text Width\";s:6:\"search\";a:8:{i:0;s:4:\"edit\";i:1;s:4:\"font\";i:2;s:6:\"format\";i:3;s:6:\"modify\";i:4;s:4:\"text\";i:5;s:4:\"type\";i:6;s:10:\"text-width\";i:7;s:10:\"text width\";}}s:19:\"fab fa-the-red-yeti\";a:2:{s:5:\"label\";s:12:\"The Red Yeti\";s:6:\"search\";a:2:{i:0;s:12:\"the-red-yeti\";i:1;s:12:\"the red yeti\";}}s:14:\"fab fa-themeco\";a:2:{s:5:\"label\";s:7:\"Themeco\";s:6:\"search\";a:1:{i:0;s:7:\"themeco\";}}s:16:\"fab fa-themeisle\";a:2:{s:5:\"label\";s:9:\"ThemeIsle\";s:6:\"search\";a:1:{i:0;s:9:\"themeisle\";}}s:18:\"fas fa-thermometer\";a:2:{s:5:\"label\";s:11:\"Thermometer\";s:6:\"search\";a:5:{i:0;s:8:\"covid-19\";i:1;s:7:\"mercury\";i:2;s:6:\"status\";i:3;s:11:\"temperature\";i:4;s:11:\"thermometer\";}}s:18:\"fab fa-think-peaks\";a:2:{s:5:\"label\";s:11:\"Think Peaks\";s:6:\"search\";a:2:{i:0;s:11:\"think-peaks\";i:1;s:11:\"think peaks\";}}s:14:\"fab fa-threads\";a:2:{s:5:\"label\";s:7:\"Threads\";s:6:\"search\";a:1:{i:0;s:7:\"threads\";}}s:18:\"fas fa-thumbs-down\";a:2:{s:5:\"label\";s:19:\"Thumbs Down (solid)\";s:6:\"search\";a:11:{i:0;s:2:\"-1\";i:1;s:8:\"disagree\";i:2;s:10:\"disapprove\";i:3;s:7:\"dislike\";i:4;s:4:\"down\";i:5;s:4:\"hand\";i:6;s:6:\"social\";i:7;s:5:\"thumb\";i:8;s:11:\"thumbs down\";i:9;s:13:\"thumbs-o-down\";i:10;s:11:\"thumbs-down\";}}s:18:\"far fa-thumbs-down\";a:2:{s:5:\"label\";s:21:\"Thumbs Down (regular)\";s:6:\"search\";a:11:{i:0;s:2:\"-1\";i:1;s:8:\"disagree\";i:2;s:10:\"disapprove\";i:3;s:7:\"dislike\";i:4;s:4:\"down\";i:5;s:4:\"hand\";i:6;s:6:\"social\";i:7;s:5:\"thumb\";i:8;s:11:\"thumbs down\";i:9;s:13:\"thumbs-o-down\";i:10;s:11:\"thumbs-down\";}}s:16:\"fas fa-thumbs-up\";a:2:{s:5:\"label\";s:17:\"Thumbs Up (solid)\";s:6:\"search\";a:17:{i:0;s:2:\"+1\";i:1;s:5:\"agree\";i:2;s:7:\"approve\";i:3;s:8:\"favorite\";i:4;s:4:\"hand\";i:5;s:4:\"like\";i:6;s:2:\"ok\";i:7;s:4:\"okay\";i:8;s:6:\"social\";i:9;s:7:\"success\";i:10;s:5:\"thumb\";i:11;s:9:\"thumbs up\";i:12;s:11:\"thumbs-o-up\";i:13;s:2:\"up\";i:14;s:3:\"yes\";i:15;s:15:\"you got it dude\";i:16;s:9:\"thumbs-up\";}}s:16:\"far fa-thumbs-up\";a:2:{s:5:\"label\";s:19:\"Thumbs Up (regular)\";s:6:\"search\";a:17:{i:0;s:2:\"+1\";i:1;s:5:\"agree\";i:2;s:7:\"approve\";i:3;s:8:\"favorite\";i:4;s:4:\"hand\";i:5;s:4:\"like\";i:6;s:2:\"ok\";i:7;s:4:\"okay\";i:8;s:6:\"social\";i:9;s:7:\"success\";i:10;s:5:\"thumb\";i:11;s:9:\"thumbs up\";i:12;s:11:\"thumbs-o-up\";i:13;s:2:\"up\";i:14;s:3:\"yes\";i:15;s:15:\"you got it dude\";i:16;s:9:\"thumbs-up\";}}s:16:\"fas fa-thumbtack\";a:2:{s:5:\"label\";s:9:\"Thumbtack\";s:6:\"search\";a:8:{i:0;s:13:\"Black Pushpin\";i:1;s:11:\"coordinates\";i:2;s:8:\"location\";i:3;s:6:\"marker\";i:4;s:3:\"pin\";i:5;s:7:\"pushpin\";i:6;s:10:\"thumb-tack\";i:7;s:9:\"thumbtack\";}}s:13:\"fas fa-ticket\";a:2:{s:5:\"label\";s:6:\"Ticket\";s:6:\"search\";a:8:{i:0;s:9:\"admission\";i:1;s:17:\"admission tickets\";i:2;s:6:\"coupon\";i:3;s:5:\"movie\";i:4;s:4:\"pass\";i:5;s:7:\"support\";i:6;s:6:\"ticket\";i:7;s:7:\"voucher\";}}s:20:\"fas fa-ticket-simple\";a:2:{s:5:\"label\";s:13:\"Ticket Simple\";s:6:\"search\";a:9:{i:0;s:9:\"admission\";i:1;s:6:\"coupon\";i:2;s:5:\"movie\";i:3;s:4:\"pass\";i:4;s:7:\"support\";i:5;s:6:\"ticket\";i:6;s:7:\"voucher\";i:7;s:13:\"ticket-simple\";i:8;s:13:\"ticket simple\";}}s:13:\"fab fa-tiktok\";a:2:{s:5:\"label\";s:6:\"TikTok\";s:6:\"search\";a:1:{i:0;s:6:\"tiktok\";}}s:15:\"fas fa-timeline\";a:2:{s:5:\"label\";s:8:\"Timeline\";s:6:\"search\";a:5:{i:0;s:13:\"chronological\";i:1;s:8:\"deadline\";i:2;s:7:\"history\";i:3;s:6:\"linear\";i:4;s:8:\"timeline\";}}s:17:\"fas fa-toggle-off\";a:2:{s:5:\"label\";s:10:\"Toggle Off\";s:6:\"search\";a:6:{i:0;s:6:\"button\";i:1;s:3:\"off\";i:2;s:2:\"on\";i:3;s:6:\"switch\";i:4;s:10:\"toggle-off\";i:5;s:10:\"toggle off\";}}s:16:\"fas fa-toggle-on\";a:2:{s:5:\"label\";s:9:\"Toggle On\";s:6:\"search\";a:6:{i:0;s:6:\"button\";i:1;s:3:\"off\";i:2;s:2:\"on\";i:3;s:6:\"switch\";i:4;s:9:\"toggle-on\";i:5;s:9:\"toggle on\";}}s:13:\"fas fa-toilet\";a:2:{s:5:\"label\";s:6:\"Toilet\";s:6:\"search\";a:16:{i:0;s:8:\"bathroom\";i:1;s:5:\"flush\";i:2;s:4:\"john\";i:3;s:3:\"loo\";i:4;s:3:\"pee\";i:5;s:8:\"plumbing\";i:6;s:4:\"poop\";i:7;s:9:\"porcelain\";i:8;s:5:\"potty\";i:9;s:8:\"restroom\";i:10;s:6:\"throne\";i:11;s:5:\"toile\";i:12;s:6:\"toilet\";i:13;s:8:\"washroom\";i:14;s:5:\"waste\";i:15;s:2:\"wc\";}}s:19:\"fas fa-toilet-paper\";a:2:{s:5:\"label\";s:12:\"Toilet Paper\";s:6:\"search\";a:15:{i:0;s:8:\"bathroom\";i:1;s:8:\"covid-19\";i:2;s:9:\"halloween\";i:3;s:7:\"holiday\";i:4;s:8:\"lavatory\";i:5;s:12:\"paper towels\";i:6;s:5:\"prank\";i:7;s:5:\"privy\";i:8;s:8:\"restroom\";i:9;s:4:\"roll\";i:10;s:13:\"roll of paper\";i:11;s:6:\"toilet\";i:12;s:12:\"toilet paper\";i:13;s:4:\"wipe\";i:14;s:12:\"toilet-paper\";}}s:25:\"fas fa-toilet-paper-slash\";a:2:{s:5:\"label\";s:18:\"Toilet Paper Slash\";s:6:\"search\";a:17:{i:0;s:8:\"bathroom\";i:1;s:8:\"covid-19\";i:2;s:8:\"disabled\";i:3;s:9:\"halloween\";i:4;s:7:\"holiday\";i:5;s:8:\"lavatory\";i:6;s:6:\"leaves\";i:7;s:5:\"prank\";i:8;s:5:\"privy\";i:9;s:8:\"restroom\";i:10;s:4:\"roll\";i:11;s:6:\"toilet\";i:12;s:7:\"trouble\";i:13;s:5:\"ut oh\";i:14;s:4:\"wipe\";i:15;s:18:\"toilet-paper-slash\";i:16;s:18:\"toilet paper slash\";}}s:22:\"fas fa-toilet-portable\";a:2:{s:5:\"label\";s:15:\"Toilet Portable\";s:6:\"search\";a:4:{i:0;s:8:\"outhouse\";i:1;s:6:\"toilet\";i:2;s:15:\"toilet-portable\";i:3;s:15:\"toilet portable\";}}s:23:\"fas fa-toilets-portable\";a:2:{s:5:\"label\";s:16:\"Toilets Portable\";s:6:\"search\";a:4:{i:0;s:8:\"outhouse\";i:1;s:6:\"toilet\";i:2;s:16:\"toilets-portable\";i:3;s:16:\"toilets portable\";}}s:14:\"fas fa-toolbox\";a:2:{s:5:\"label\";s:7:\"Toolbox\";s:6:\"search\";a:14:{i:0;s:5:\"admin\";i:1;s:5:\"chest\";i:2;s:13:\"configuration\";i:3;s:9:\"container\";i:4;s:9:\"equipment\";i:5;s:3:\"fix\";i:6;s:11:\"maintenance\";i:7;s:8:\"mechanic\";i:8;s:6:\"modify\";i:9;s:6:\"repair\";i:10;s:8:\"settings\";i:11;s:4:\"tool\";i:12;s:7:\"toolbox\";i:13;s:5:\"tools\";}}s:12:\"fas fa-tooth\";a:2:{s:5:\"label\";s:5:\"Tooth\";s:6:\"search\";a:7:{i:0;s:8:\"bicuspid\";i:1;s:6:\"dental\";i:2;s:7:\"dentist\";i:3;s:5:\"molar\";i:4;s:5:\"mouth\";i:5;s:5:\"teeth\";i:6;s:5:\"tooth\";}}s:17:\"fas fa-torii-gate\";a:2:{s:5:\"label\";s:10:\"Torii Gate\";s:6:\"search\";a:8:{i:0;s:8:\"building\";i:1;s:8:\"religion\";i:2;s:6:\"shinto\";i:3;s:13:\"shinto shrine\";i:4;s:9:\"shintoism\";i:5;s:6:\"shrine\";i:6;s:10:\"torii-gate\";i:7;s:10:\"torii gate\";}}s:14:\"fas fa-tornado\";a:2:{s:5:\"label\";s:7:\"Tornado\";s:6:\"search\";a:11:{i:0;s:5:\"cloud\";i:1;s:7:\"cyclone\";i:2;s:7:\"dorothy\";i:3;s:9:\"landspout\";i:4;s:7:\"tornado\";i:5;s:4:\"toto\";i:6;s:7:\"twister\";i:7;s:7:\"vortext\";i:8;s:10:\"waterspout\";i:9;s:7:\"weather\";i:10;s:9:\"whirlwind\";}}s:22:\"fas fa-tower-broadcast\";a:2:{s:5:\"label\";s:15:\"Tower Broadcast\";s:6:\"search\";a:9:{i:0;s:8:\"airwaves\";i:1;s:7:\"antenna\";i:2;s:13:\"communication\";i:3;s:9:\"emergency\";i:4;s:5:\"radio\";i:5;s:9:\"reception\";i:6;s:5:\"waves\";i:7;s:15:\"tower-broadcast\";i:8;s:15:\"tower broadcast\";}}s:17:\"fas fa-tower-cell\";a:2:{s:5:\"label\";s:10:\"Tower Cell\";s:6:\"search\";a:8:{i:0;s:8:\"airwaves\";i:1;s:7:\"antenna\";i:2;s:13:\"communication\";i:3;s:5:\"radio\";i:4;s:9:\"reception\";i:5;s:5:\"waves\";i:6;s:10:\"tower-cell\";i:7;s:10:\"tower cell\";}}s:24:\"fas fa-tower-observation\";a:2:{s:5:\"label\";s:17:\"Tower Observation\";s:6:\"search\";a:4:{i:0;s:10:\"fire tower\";i:1;s:4:\"view\";i:2;s:17:\"tower-observation\";i:3;s:17:\"tower observation\";}}s:14:\"fas fa-tractor\";a:2:{s:5:\"label\";s:7:\"Tractor\";s:6:\"search\";a:4:{i:0;s:11:\"agriculture\";i:1;s:4:\"farm\";i:2;s:7:\"tractor\";i:3;s:7:\"vehicle\";}}s:23:\"fab fa-trade-federation\";a:2:{s:5:\"label\";s:16:\"Trade Federation\";s:6:\"search\";a:2:{i:0;s:16:\"trade-federation\";i:1;s:16:\"trade federation\";}}s:16:\"fas fa-trademark\";a:2:{s:5:\"label\";s:9:\"Trademark\";s:6:\"search\";a:7:{i:0;s:9:\"copyright\";i:1;s:4:\"mark\";i:2;s:8:\"register\";i:3;s:6:\"symbol\";i:4;s:2:\"tm\";i:5;s:10:\"trade mark\";i:6;s:9:\"trademark\";}}s:20:\"fas fa-traffic-light\";a:2:{s:5:\"label\";s:13:\"Traffic Light\";s:6:\"search\";a:9:{i:0;s:9:\"direction\";i:1;s:5:\"light\";i:2;s:4:\"road\";i:3;s:6:\"signal\";i:4;s:7:\"traffic\";i:5;s:6:\"travel\";i:6;s:22:\"vertical traffic light\";i:7;s:13:\"traffic-light\";i:8;s:13:\"traffic light\";}}s:14:\"fas fa-trailer\";a:2:{s:5:\"label\";s:7:\"Trailer\";s:6:\"search\";a:5:{i:0;s:5:\"carry\";i:1;s:4:\"haul\";i:2;s:6:\"moving\";i:3;s:6:\"travel\";i:4;s:7:\"trailer\";}}s:12:\"fas fa-train\";a:2:{s:5:\"label\";s:5:\"Train\";s:6:\"search\";a:6:{i:0;s:6:\"bullet\";i:1;s:7:\"commute\";i:2;s:10:\"locomotive\";i:3;s:7:\"railway\";i:4;s:6:\"subway\";i:5;s:5:\"train\";}}s:19:\"fas fa-train-subway\";a:2:{s:5:\"label\";s:12:\"Train Subway\";s:6:\"search\";a:7:{i:0;s:7:\"machine\";i:1;s:7:\"railway\";i:2;s:5:\"train\";i:3;s:14:\"transportation\";i:4;s:7:\"vehicle\";i:5;s:12:\"train-subway\";i:6;s:12:\"train subway\";}}s:17:\"fas fa-train-tram\";a:2:{s:5:\"label\";s:10:\"Train Tram\";s:6:\"search\";a:9:{i:0;s:8:\"crossing\";i:1;s:7:\"machine\";i:2;s:9:\"mountains\";i:3;s:8:\"seasonal\";i:4;s:4:\"tram\";i:5;s:14:\"transportation\";i:6;s:10:\"trolleybus\";i:7;s:10:\"train-tram\";i:8;s:10:\"train tram\";}}s:18:\"fas fa-transgender\";a:2:{s:5:\"label\";s:11:\"Transgender\";s:6:\"search\";a:6:{i:0;s:6:\"female\";i:1;s:6:\"gender\";i:2;s:8:\"intersex\";i:3;s:4:\"male\";i:4;s:11:\"transgender\";i:5;s:18:\"transgender symbol\";}}s:12:\"fas fa-trash\";a:2:{s:5:\"label\";s:5:\"Trash\";s:6:\"search\";a:5:{i:0;s:6:\"delete\";i:1;s:7:\"garbage\";i:2;s:4:\"hide\";i:3;s:6:\"remove\";i:4;s:5:\"trash\";}}s:21:\"fas fa-trash-arrow-up\";a:2:{s:5:\"label\";s:14:\"Trash Arrow Up\";s:6:\"search\";a:11:{i:0;s:4:\"back\";i:1;s:9:\"control z\";i:2;s:6:\"delete\";i:3;s:7:\"garbage\";i:4;s:4:\"hide\";i:5;s:4:\"oops\";i:6;s:6:\"remove\";i:7;s:4:\"undo\";i:8;s:7:\"upgrade\";i:9;s:14:\"trash-arrow-up\";i:10;s:14:\"trash arrow up\";}}s:16:\"fas fa-trash-can\";a:2:{s:5:\"label\";s:17:\"Trash Can (solid)\";s:6:\"search\";a:7:{i:0;s:6:\"delete\";i:1;s:7:\"garbage\";i:2;s:4:\"hide\";i:3;s:6:\"remove\";i:4;s:7:\"trash-o\";i:5;s:9:\"trash-can\";i:6;s:9:\"trash can\";}}s:16:\"far fa-trash-can\";a:2:{s:5:\"label\";s:19:\"Trash Can (regular)\";s:6:\"search\";a:7:{i:0;s:6:\"delete\";i:1;s:7:\"garbage\";i:2;s:4:\"hide\";i:3;s:6:\"remove\";i:4;s:7:\"trash-o\";i:5;s:9:\"trash-can\";i:6;s:9:\"trash can\";}}s:25:\"fas fa-trash-can-arrow-up\";a:2:{s:5:\"label\";s:18:\"Trash Can Arrow Up\";s:6:\"search\";a:11:{i:0;s:4:\"back\";i:1;s:9:\"control z\";i:2;s:6:\"delete\";i:3;s:7:\"garbage\";i:4;s:4:\"hide\";i:5;s:4:\"oops\";i:6;s:6:\"remove\";i:7;s:4:\"undo\";i:8;s:7:\"upgrade\";i:9;s:18:\"trash-can-arrow-up\";i:10;s:18:\"trash can arrow up\";}}s:11:\"fas fa-tree\";a:2:{s:5:\"label\";s:4:\"Tree\";s:6:\"search\";a:10:{i:0;s:4:\"bark\";i:1;s:14:\"evergreen tree\";i:2;s:4:\"fall\";i:3;s:5:\"flora\";i:4;s:6:\"forest\";i:5;s:10:\"investment\";i:6;s:6:\"nature\";i:7;s:5:\"plant\";i:8;s:8:\"seasonal\";i:9;s:4:\"tree\";}}s:16:\"fas fa-tree-city\";a:2:{s:5:\"label\";s:9:\"Tree City\";s:6:\"search\";a:5:{i:0;s:8:\"building\";i:1;s:4:\"city\";i:2;s:5:\"urban\";i:3;s:9:\"tree-city\";i:4;s:9:\"tree city\";}}s:13:\"fab fa-trello\";a:2:{s:5:\"label\";s:6:\"Trello\";s:6:\"search\";a:2:{i:0;s:9:\"atlassian\";i:1;s:6:\"trello\";}}s:27:\"fas fa-triangle-exclamation\";a:2:{s:5:\"label\";s:20:\"Triangle Exclamation\";s:6:\"search\";a:15:{i:0;s:5:\"alert\";i:1;s:9:\"attention\";i:2;s:6:\"danger\";i:3;s:5:\"error\";i:4;s:6:\"failed\";i:5;s:9:\"important\";i:6;s:6:\"notice\";i:7;s:12:\"notification\";i:8;s:6:\"notify\";i:9;s:7:\"problem\";i:10;s:8:\"required\";i:11;s:6:\"warnin\";i:12;s:7:\"warning\";i:13;s:20:\"triangle-exclamation\";i:14;s:20:\"triangle exclamation\";}}s:13:\"fas fa-trophy\";a:2:{s:5:\"label\";s:6:\"Trophy\";s:6:\"search\";a:7:{i:0;s:11:\"achievement\";i:1;s:5:\"award\";i:2;s:3:\"cup\";i:3;s:4:\"game\";i:4;s:5:\"prize\";i:5;s:6:\"trophy\";i:6;s:6:\"winner\";}}s:13:\"fas fa-trowel\";a:2:{s:5:\"label\";s:6:\"Trowel\";s:6:\"search\";a:6:{i:0;s:5:\"build\";i:1;s:12:\"construction\";i:2;s:9:\"equipment\";i:3;s:11:\"maintenance\";i:4;s:4:\"tool\";i:5;s:6:\"trowel\";}}s:20:\"fas fa-trowel-bricks\";a:2:{s:5:\"label\";s:13:\"Trowel Bricks\";s:6:\"search\";a:7:{i:0;s:5:\"build\";i:1;s:12:\"construction\";i:2;s:11:\"maintenance\";i:3;s:14:\"reconstruction\";i:4;s:4:\"tool\";i:5;s:13:\"trowel-bricks\";i:6;s:13:\"trowel bricks\";}}s:12:\"fas fa-truck\";a:2:{s:5:\"label\";s:5:\"Truck\";s:6:\"search\";a:7:{i:0;s:11:\"Black Truck\";i:1;s:5:\"cargo\";i:2;s:8:\"delivery\";i:3;s:14:\"delivery truck\";i:4;s:8:\"shipping\";i:5;s:5:\"truck\";i:6;s:7:\"vehicle\";}}s:24:\"fas fa-truck-arrow-right\";a:2:{s:5:\"label\";s:17:\"Truck Arrow Right\";s:6:\"search\";a:6:{i:0;s:6:\"access\";i:1;s:4:\"fast\";i:2;s:8:\"shipping\";i:3;s:9:\"transport\";i:4;s:17:\"truck-arrow-right\";i:5;s:17:\"truck arrow right\";}}s:20:\"fas fa-truck-droplet\";a:2:{s:5:\"label\";s:13:\"Truck Droplet\";s:6:\"search\";a:7:{i:0;s:5:\"blood\";i:1;s:6:\"thirst\";i:2;s:5:\"truck\";i:3;s:5:\"water\";i:4;s:12:\"water supply\";i:5;s:13:\"truck-droplet\";i:6;s:13:\"truck droplet\";}}s:17:\"fas fa-truck-fast\";a:2:{s:5:\"label\";s:10:\"Truck Fast\";s:6:\"search\";a:9:{i:0;s:7:\"express\";i:1;s:5:\"fedex\";i:2;s:4:\"mail\";i:3;s:9:\"overnight\";i:4;s:7:\"package\";i:5;s:5:\"quick\";i:6;s:3:\"ups\";i:7;s:10:\"truck-fast\";i:8;s:10:\"truck fast\";}}s:18:\"fas fa-truck-field\";a:2:{s:5:\"label\";s:11:\"Truck Field\";s:6:\"search\";a:4:{i:0;s:8:\"supplies\";i:1;s:5:\"truck\";i:2;s:11:\"truck-field\";i:3;s:11:\"truck field\";}}s:21:\"fas fa-truck-field-un\";a:2:{s:5:\"label\";s:14:\"Truck Field Un\";s:6:\"search\";a:5:{i:0;s:8:\"supplies\";i:1;s:5:\"truck\";i:2;s:14:\"united nations\";i:3;s:14:\"truck-field-un\";i:4;s:14:\"truck field un\";}}s:18:\"fas fa-truck-front\";a:2:{s:5:\"label\";s:11:\"Truck Front\";s:6:\"search\";a:5:{i:0;s:7:\"shuttle\";i:1;s:5:\"truck\";i:2;s:3:\"van\";i:3;s:11:\"truck-front\";i:4;s:11:\"truck front\";}}s:20:\"fas fa-truck-medical\";a:2:{s:5:\"label\";s:13:\"Truck Medical\";s:6:\"search\";a:13:{i:0;s:9:\"ambulance\";i:1;s:6:\"clinic\";i:2;s:8:\"covid-19\";i:3;s:9:\"emergency\";i:4;s:3:\"emt\";i:5;s:2:\"er\";i:6;s:4:\"help\";i:7;s:8:\"hospital\";i:8;s:6:\"mobile\";i:9;s:7:\"support\";i:10;s:7:\"vehicle\";i:11;s:13:\"truck-medical\";i:12;s:13:\"truck medical\";}}s:20:\"fas fa-truck-monster\";a:2:{s:5:\"label\";s:13:\"Truck Monster\";s:6:\"search\";a:5:{i:0;s:7:\"offroad\";i:1;s:7:\"vehicle\";i:2;s:5:\"wheel\";i:3;s:13:\"truck-monster\";i:4;s:13:\"truck monster\";}}s:19:\"fas fa-truck-moving\";a:2:{s:5:\"label\";s:12:\"Truck Moving\";s:6:\"search\";a:6:{i:0;s:5:\"cargo\";i:1;s:9:\"inventory\";i:2;s:6:\"rental\";i:3;s:7:\"vehicle\";i:4;s:12:\"truck-moving\";i:5;s:12:\"truck moving\";}}s:19:\"fas fa-truck-pickup\";a:2:{s:5:\"label\";s:12:\"Truck Pickup\";s:6:\"search\";a:9:{i:0;s:5:\"cargo\";i:1;s:11:\"maintenance\";i:2;s:7:\"pick-up\";i:3;s:6:\"pickup\";i:4;s:12:\"pickup truck\";i:5;s:5:\"truck\";i:6;s:7:\"vehicle\";i:7;s:12:\"truck-pickup\";i:8;s:12:\"truck pickup\";}}s:18:\"fas fa-truck-plane\";a:2:{s:5:\"label\";s:11:\"Truck Plane\";s:6:\"search\";a:7:{i:0;s:8:\"airplane\";i:1;s:5:\"plane\";i:2;s:14:\"transportation\";i:3;s:5:\"truck\";i:4;s:7:\"vehicle\";i:5;s:11:\"truck-plane\";i:6;s:11:\"truck plane\";}}s:21:\"fas fa-truck-ramp-box\";a:2:{s:5:\"label\";s:14:\"Truck Ramp Box\";s:6:\"search\";a:9:{i:0;s:3:\"box\";i:1;s:5:\"cargo\";i:2;s:8:\"delivery\";i:3;s:9:\"inventory\";i:4;s:6:\"moving\";i:5;s:6:\"rental\";i:6;s:7:\"vehicle\";i:7;s:14:\"truck-ramp-box\";i:8;s:14:\"truck ramp box\";}}s:10:\"fas fa-tty\";a:2:{s:5:\"label\";s:3:\"Tty\";s:6:\"search\";a:6:{i:0;s:13:\"communication\";i:1;s:4:\"deaf\";i:2;s:9:\"telephone\";i:3;s:14:\"teletypewriter\";i:4;s:4:\"text\";i:5;s:3:\"tty\";}}s:13:\"fab fa-tumblr\";a:2:{s:5:\"label\";s:6:\"Tumblr\";s:6:\"search\";a:1:{i:0;s:6:\"tumblr\";}}s:24:\"fas fa-turkish-lira-sign\";a:2:{s:5:\"label\";s:17:\"Turkish Lira Sign\";s:6:\"search\";a:4:{i:0;s:17:\"Turkish Lira Sign\";i:1;s:8:\"currency\";i:2;s:17:\"turkish-lira-sign\";i:3;s:17:\"turkish lira sign\";}}s:16:\"fas fa-turn-down\";a:2:{s:5:\"label\";s:9:\"Turn Down\";s:6:\"search\";a:6:{i:0;s:5:\"arrow\";i:1;s:4:\"down\";i:2;s:10:\"level-down\";i:3;s:24:\"right arrow curving down\";i:4;s:9:\"turn-down\";i:5;s:9:\"turn down\";}}s:14:\"fas fa-turn-up\";a:2:{s:5:\"label\";s:7:\"Turn Up\";s:6:\"search\";a:5:{i:0;s:5:\"arrow\";i:1;s:8:\"level-up\";i:2;s:22:\"right arrow curving up\";i:3;s:7:\"turn-up\";i:4;s:7:\"turn up\";}}s:9:\"fas fa-tv\";a:2:{s:5:\"label\";s:2:\"Tv\";s:6:\"search\";a:5:{i:0;s:8:\"computer\";i:1;s:7:\"display\";i:2;s:7:\"monitor\";i:3;s:10:\"television\";i:4;s:2:\"tv\";}}s:13:\"fab fa-twitch\";a:2:{s:5:\"label\";s:6:\"Twitch\";s:6:\"search\";a:1:{i:0;s:6:\"twitch\";}}s:14:\"fab fa-twitter\";a:2:{s:5:\"label\";s:7:\"Twitter\";s:6:\"search\";a:3:{i:0;s:14:\"social network\";i:1;s:5:\"tweet\";i:2;s:7:\"twitter\";}}s:12:\"fab fa-typo3\";a:2:{s:5:\"label\";s:5:\"Typo3\";s:6:\"search\";a:1:{i:0;s:5:\"typo3\";}}s:8:\"fas fa-u\";a:2:{s:5:\"label\";s:1:\"U\";s:6:\"search\";a:4:{i:0;s:22:\"Latin Capital Letter U\";i:1;s:20:\"Latin Small Letter U\";i:2;s:6:\"letter\";i:3;s:1:\"u\";}}s:11:\"fab fa-uber\";a:2:{s:5:\"label\";s:4:\"Uber\";s:6:\"search\";a:1:{i:0;s:4:\"uber\";}}s:13:\"fab fa-ubuntu\";a:2:{s:5:\"label\";s:6:\"Ubuntu\";s:6:\"search\";a:4:{i:0;s:5:\"linux\";i:1;s:16:\"operating system\";i:2;s:2:\"os\";i:3;s:6:\"ubuntu\";}}s:12:\"fab fa-uikit\";a:2:{s:5:\"label\";s:5:\"UIkit\";s:6:\"search\";a:1:{i:0;s:5:\"uikit\";}}s:14:\"fab fa-umbraco\";a:2:{s:5:\"label\";s:7:\"Umbraco\";s:6:\"search\";a:1:{i:0;s:7:\"umbraco\";}}s:15:\"fas fa-umbrella\";a:2:{s:5:\"label\";s:8:\"Umbrella\";s:6:\"search\";a:5:{i:0;s:10:\"protection\";i:1;s:4:\"rain\";i:2;s:5:\"storm\";i:3;s:3:\"wet\";i:4;s:8:\"umbrella\";}}s:21:\"fas fa-umbrella-beach\";a:2:{s:5:\"label\";s:14:\"Umbrella Beach\";s:6:\"search\";a:11:{i:0;s:5:\"beach\";i:1;s:19:\"beach with umbrella\";i:2;s:10:\"protection\";i:3;s:10:\"recreation\";i:4;s:4:\"sand\";i:5;s:5:\"shade\";i:6;s:6:\"summer\";i:7;s:3:\"sun\";i:8;s:8:\"umbrella\";i:9;s:14:\"umbrella-beach\";i:10;s:14:\"umbrella beach\";}}s:16:\"fab fa-uncharted\";a:2:{s:5:\"label\";s:18:\"Uncharted Software\";s:6:\"search\";a:2:{i:0;s:9:\"uncharted\";i:1;s:18:\"uncharted software\";}}s:16:\"fas fa-underline\";a:2:{s:5:\"label\";s:9:\"Underline\";s:6:\"search\";a:7:{i:0;s:4:\"edit\";i:1;s:8:\"emphasis\";i:2;s:6:\"format\";i:3;s:6:\"modify\";i:4;s:4:\"text\";i:5;s:7:\"writing\";i:6;s:9:\"underline\";}}s:18:\"fab fa-uniregistry\";a:2:{s:5:\"label\";s:11:\"Uniregistry\";s:6:\"search\";a:1:{i:0;s:11:\"uniregistry\";}}s:12:\"fab fa-unity\";a:2:{s:5:\"label\";s:8:\"Unity 3D\";s:6:\"search\";a:2:{i:0;s:5:\"unity\";i:1;s:8:\"unity 3d\";}}s:23:\"fas fa-universal-access\";a:2:{s:5:\"label\";s:16:\"Universal Access\";s:6:\"search\";a:4:{i:0;s:3:\"uer\";i:1;s:12:\"users-people\";i:2;s:16:\"universal-access\";i:3;s:16:\"universal access\";}}s:13:\"fas fa-unlock\";a:2:{s:5:\"label\";s:6:\"Unlock\";s:6:\"search\";a:10:{i:0;s:5:\"admin\";i:1;s:4:\"lock\";i:2;s:4:\"open\";i:3;s:7:\"padlock\";i:4;s:8:\"password\";i:5;s:7:\"privacy\";i:6;s:7:\"private\";i:7;s:7:\"protect\";i:8;s:6:\"unlock\";i:9;s:8:\"unlocked\";}}s:21:\"fas fa-unlock-keyhole\";a:2:{s:5:\"label\";s:14:\"Unlock Keyhole\";s:6:\"search\";a:9:{i:0;s:5:\"admin\";i:1;s:4:\"lock\";i:2;s:7:\"padlock\";i:3;s:8:\"password\";i:4;s:7:\"privacy\";i:5;s:7:\"private\";i:6;s:7:\"protect\";i:7;s:14:\"unlock-keyhole\";i:8;s:14:\"unlock keyhole\";}}s:15:\"fab fa-unsplash\";a:2:{s:5:\"label\";s:8:\"Unsplash\";s:6:\"search\";a:1:{i:0;s:8:\"unsplash\";}}s:14:\"fab fa-untappd\";a:2:{s:5:\"label\";s:7:\"Untappd\";s:6:\"search\";a:1:{i:0;s:7:\"untappd\";}}s:14:\"fas fa-up-down\";a:2:{s:5:\"label\";s:7:\"Up Down\";s:6:\"search\";a:11:{i:0;s:19:\"Up Down Black Arrow\";i:1;s:5:\"arrow\";i:2;s:8:\"arrows-v\";i:3;s:6:\"expand\";i:4;s:8:\"portrait\";i:5;s:6:\"resize\";i:6;s:4:\"tall\";i:7;s:13:\"up-down arrow\";i:8;s:8:\"vertical\";i:9;s:7:\"up-down\";i:10;s:7:\"up down\";}}s:25:\"fas fa-up-down-left-right\";a:2:{s:5:\"label\";s:18:\"Up Down Left Right\";s:6:\"search\";a:12:{i:0;s:5:\"arrow\";i:1;s:6:\"arrows\";i:2;s:6:\"bigger\";i:3;s:7:\"enlarge\";i:4;s:6:\"expand\";i:5;s:10:\"fullscreen\";i:6;s:4:\"move\";i:7;s:8:\"position\";i:8;s:7:\"reorder\";i:9;s:6:\"resize\";i:10;s:18:\"up-down-left-right\";i:11;s:18:\"up down left right\";}}s:14:\"fas fa-up-long\";a:2:{s:5:\"label\";s:7:\"Up Long\";s:6:\"search\";a:5:{i:0;s:13:\"long-arrow-up\";i:1;s:7:\"upgrade\";i:2;s:6:\"upload\";i:3;s:7:\"up-long\";i:4;s:7:\"up long\";}}s:41:\"fas fa-up-right-and-down-left-from-center\";a:2:{s:5:\"label\";s:34:\"Up Right And Down Left From Center\";s:6:\"search\";a:12:{i:0;s:9:\" maximize\";i:1;s:7:\" resize\";i:2;s:6:\" scale\";i:3;s:6:\"arrows\";i:4;s:6:\"bigger\";i:5;s:7:\"enlarge\";i:6;s:6:\"expand\";i:7;s:10:\"fullscreen\";i:8;s:6:\"resize\";i:9;s:4:\"size\";i:10;s:34:\"up-right-and-down-left-from-center\";i:11;s:34:\"up right and down left from center\";}}s:27:\"fas fa-up-right-from-square\";a:2:{s:5:\"label\";s:20:\"Up Right From Square\";s:6:\"search\";a:7:{i:0;s:13:\"external-link\";i:1;s:3:\"new\";i:2;s:4:\"open\";i:3;s:5:\"share\";i:4;s:7:\"upgrade\";i:5;s:20:\"up-right-from-square\";i:6;s:20:\"up right from square\";}}s:13:\"fas fa-upload\";a:2:{s:5:\"label\";s:6:\"Upload\";s:6:\"search\";a:5:{i:0;s:10:\"hard drive\";i:1;s:6:\"import\";i:2;s:7:\"publish\";i:3;s:7:\"upgrade\";i:4;s:6:\"upload\";}}s:10:\"fab fa-ups\";a:2:{s:5:\"label\";s:3:\"UPS\";s:6:\"search\";a:4:{i:0;s:21:\"United Parcel Service\";i:1;s:7:\"package\";i:2;s:8:\"shipping\";i:3;s:3:\"ups\";}}s:13:\"fab fa-upwork\";a:2:{s:5:\"label\";s:6:\"Upwork\";s:6:\"search\";a:1:{i:0;s:6:\"upwork\";}}s:10:\"fab fa-usb\";a:2:{s:5:\"label\";s:3:\"USB\";s:6:\"search\";a:1:{i:0;s:3:\"usb\";}}s:11:\"fas fa-user\";a:2:{s:5:\"label\";s:12:\"User (solid)\";s:6:\"search\";a:14:{i:0;s:5:\"adult\";i:1;s:4:\"bust\";i:2;s:18:\"bust in silhouette\";i:3;s:7:\"default\";i:4;s:8:\"employee\";i:5;s:14:\"gender-neutral\";i:6;s:6:\"person\";i:7;s:7:\"profile\";i:8;s:10:\"silhouette\";i:9;s:3:\"uer\";i:10;s:18:\"unspecified gender\";i:11;s:8:\"username\";i:12;s:12:\"users-people\";i:13;s:4:\"user\";}}s:11:\"far fa-user\";a:2:{s:5:\"label\";s:14:\"User (regular)\";s:6:\"search\";a:14:{i:0;s:5:\"adult\";i:1;s:4:\"bust\";i:2;s:18:\"bust in silhouette\";i:3;s:7:\"default\";i:4;s:8:\"employee\";i:5;s:14:\"gender-neutral\";i:6;s:6:\"person\";i:7;s:7:\"profile\";i:8;s:10:\"silhouette\";i:9;s:3:\"uer\";i:10;s:18:\"unspecified gender\";i:11;s:8:\"username\";i:12;s:12:\"users-people\";i:13;s:4:\"user\";}}s:21:\"fas fa-user-astronaut\";a:2:{s:5:\"label\";s:14:\"User Astronaut\";s:6:\"search\";a:9:{i:0;s:6:\"avatar\";i:1;s:8:\"clothing\";i:2;s:9:\"cosmonaut\";i:3;s:4:\"nasa\";i:4;s:5:\"space\";i:5;s:4:\"suit\";i:6;s:3:\"uer\";i:7;s:14:\"user-astronaut\";i:8;s:14:\"user astronaut\";}}s:17:\"fas fa-user-check\";a:2:{s:5:\"label\";s:10:\"User Check\";s:6:\"search\";a:8:{i:0;s:8:\"employee\";i:1;s:6:\"enable\";i:2;s:3:\"uer\";i:3;s:12:\"users-people\";i:4;s:8:\"validate\";i:5;s:7:\"working\";i:6;s:10:\"user-check\";i:7;s:10:\"user check\";}}s:17:\"fas fa-user-clock\";a:2:{s:5:\"label\";s:10:\"User Clock\";s:6:\"search\";a:5:{i:0;s:8:\"employee\";i:1;s:3:\"uer\";i:2;s:12:\"users-people\";i:3;s:10:\"user-clock\";i:4;s:10:\"user clock\";}}s:18:\"fas fa-user-doctor\";a:2:{s:5:\"label\";s:11:\"User Doctor\";s:6:\"search\";a:13:{i:0;s:8:\"covid-19\";i:1;s:6:\"health\";i:2;s:3:\"job\";i:3;s:7:\"medical\";i:4;s:5:\"nurse\";i:5;s:10:\"occupation\";i:6;s:9:\"physician\";i:7;s:7:\"profile\";i:8;s:7:\"surgeon\";i:9;s:3:\"uer\";i:10;s:6:\"worker\";i:11;s:11:\"user-doctor\";i:12;s:11:\"user doctor\";}}s:16:\"fas fa-user-gear\";a:2:{s:5:\"label\";s:9:\"User Gear\";s:6:\"search\";a:6:{i:0;s:8:\"employee\";i:1;s:8:\"together\";i:2;s:3:\"uer\";i:3;s:12:\"users-people\";i:4;s:9:\"user-gear\";i:5;s:9:\"user gear\";}}s:20:\"fas fa-user-graduate\";a:2:{s:5:\"label\";s:13:\"User Graduate\";s:6:\"search\";a:4:{i:0;s:3:\"uer\";i:1;s:12:\"users-people\";i:2;s:13:\"user-graduate\";i:3;s:13:\"user graduate\";}}s:17:\"fas fa-user-group\";a:2:{s:5:\"label\";s:10:\"User Group\";s:6:\"search\";a:10:{i:0;s:4:\"bust\";i:1;s:19:\"busts in silhouette\";i:2;s:5:\"crowd\";i:3;s:8:\"employee\";i:4;s:10:\"silhouette\";i:5;s:8:\"together\";i:6;s:3:\"uer\";i:7;s:12:\"users-people\";i:8;s:10:\"user-group\";i:9;s:10:\"user group\";}}s:19:\"fas fa-user-injured\";a:2:{s:5:\"label\";s:12:\"User Injured\";s:6:\"search\";a:5:{i:0;s:8:\"employee\";i:1;s:3:\"uer\";i:2;s:12:\"users-people\";i:3;s:12:\"user-injured\";i:4;s:12:\"user injured\";}}s:17:\"fas fa-user-large\";a:2:{s:5:\"label\";s:10:\"User Large\";s:6:\"search\";a:5:{i:0;s:8:\"employee\";i:1;s:3:\"uer\";i:2;s:12:\"users-people\";i:3;s:10:\"user-large\";i:4;s:10:\"user large\";}}s:23:\"fas fa-user-large-slash\";a:2:{s:5:\"label\";s:16:\"User Large Slash\";s:6:\"search\";a:7:{i:0;s:8:\"disabled\";i:1;s:10:\"disconnect\";i:2;s:8:\"employee\";i:3;s:3:\"uer\";i:4;s:12:\"users-people\";i:5;s:16:\"user-large-slash\";i:6;s:16:\"user large slash\";}}s:16:\"fas fa-user-lock\";a:2:{s:5:\"label\";s:9:\"User Lock\";s:6:\"search\";a:7:{i:0;s:8:\"employee\";i:1;s:7:\"padlock\";i:2;s:7:\"privacy\";i:3;s:3:\"uer\";i:4;s:12:\"users-people\";i:5;s:9:\"user-lock\";i:6;s:9:\"user lock\";}}s:17:\"fas fa-user-minus\";a:2:{s:5:\"label\";s:10:\"User Minus\";s:6:\"search\";a:7:{i:0;s:6:\"delete\";i:1;s:8:\"employee\";i:2;s:8:\"negative\";i:3;s:6:\"remove\";i:4;s:3:\"uer\";i:5;s:10:\"user-minus\";i:6;s:10:\"user minus\";}}s:17:\"fas fa-user-ninja\";a:2:{s:5:\"label\";s:10:\"User Ninja\";s:6:\"search\";a:12:{i:0;s:8:\"assassin\";i:1;s:6:\"avatar\";i:2;s:9:\"dangerous\";i:3;s:6:\"deadly\";i:4;s:7:\"fighter\";i:5;s:6:\"hidden\";i:6;s:5:\"ninja\";i:7;s:6:\"sneaky\";i:8;s:7:\"stealth\";i:9;s:3:\"uer\";i:10;s:10:\"user-ninja\";i:11;s:10:\"user ninja\";}}s:17:\"fas fa-user-nurse\";a:2:{s:5:\"label\";s:10:\"User Nurse\";s:6:\"search\";a:13:{i:0;s:8:\"covid-19\";i:1;s:6:\"doctor\";i:2;s:6:\"health\";i:3;s:2:\"md\";i:4;s:7:\"medical\";i:5;s:7:\"midwife\";i:6;s:9:\"physician\";i:7;s:12:\"practitioner\";i:8;s:7:\"surgeon\";i:9;s:3:\"uer\";i:10;s:6:\"worker\";i:11;s:10:\"user-nurse\";i:12;s:10:\"user nurse\";}}s:15:\"fas fa-user-pen\";a:2:{s:5:\"label\";s:8:\"User Pen\";s:6:\"search\";a:6:{i:0;s:8:\"employee\";i:1;s:6:\"modify\";i:2;s:3:\"uer\";i:3;s:12:\"users-people\";i:4;s:8:\"user-pen\";i:5;s:8:\"user pen\";}}s:16:\"fas fa-user-plus\";a:2:{s:5:\"label\";s:9:\"User Plus\";s:6:\"search\";a:11:{i:0;s:3:\"add\";i:1;s:6:\"avatar\";i:2;s:8:\"employee\";i:3;s:6:\"follow\";i:4;s:8:\"positive\";i:5;s:7:\"sign up\";i:6;s:6:\"signup\";i:7;s:4:\"team\";i:8;s:3:\"uer\";i:9;s:9:\"user-plus\";i:10;s:9:\"user plus\";}}s:18:\"fas fa-user-secret\";a:2:{s:5:\"label\";s:11:\"User Secret\";s:6:\"search\";a:7:{i:0;s:9:\"detective\";i:1;s:6:\"sleuth\";i:2;s:3:\"spy\";i:3;s:3:\"uer\";i:4;s:12:\"users-people\";i:5;s:11:\"user-secret\";i:6;s:11:\"user secret\";}}s:18:\"fas fa-user-shield\";a:2:{s:5:\"label\";s:11:\"User Shield\";s:6:\"search\";a:6:{i:0;s:8:\"employee\";i:1;s:7:\"protect\";i:2;s:6:\"safety\";i:3;s:3:\"uer\";i:4;s:11:\"user-shield\";i:5;s:11:\"user shield\";}}s:17:\"fas fa-user-slash\";a:2:{s:5:\"label\";s:10:\"User Slash\";s:6:\"search\";a:10:{i:0;s:3:\"ban\";i:1;s:6:\"delete\";i:2;s:4:\"deny\";i:3;s:8:\"disabled\";i:4;s:10:\"disconnect\";i:5;s:8:\"employee\";i:6;s:6:\"remove\";i:7;s:3:\"uer\";i:8;s:10:\"user-slash\";i:9;s:10:\"user slash\";}}s:15:\"fas fa-user-tag\";a:2:{s:5:\"label\";s:8:\"User Tag\";s:6:\"search\";a:5:{i:0;s:8:\"employee\";i:1;s:3:\"uer\";i:2;s:12:\"users-people\";i:3;s:8:\"user-tag\";i:4;s:8:\"user tag\";}}s:15:\"fas fa-user-tie\";a:2:{s:5:\"label\";s:8:\"User Tie\";s:6:\"search\";a:13:{i:0;s:13:\"administrator\";i:1;s:6:\"avatar\";i:2;s:8:\"business\";i:3;s:8:\"clothing\";i:4;s:8:\"employee\";i:5;s:6:\"formal\";i:6;s:5:\"offer\";i:7;s:9:\"portfolio\";i:8;s:12:\"professional\";i:9;s:4:\"suit\";i:10;s:3:\"uer\";i:11;s:8:\"user-tie\";i:12;s:8:\"user tie\";}}s:17:\"fas fa-user-xmark\";a:2:{s:5:\"label\";s:10:\"User Xmark\";s:6:\"search\";a:9:{i:0;s:7:\"archive\";i:1;s:6:\"delete\";i:2;s:8:\"employee\";i:3;s:6:\"remove\";i:4;s:3:\"uer\";i:5;s:7:\"uncheck\";i:6;s:1:\"x\";i:7;s:10:\"user-xmark\";i:8;s:10:\"user xmark\";}}s:12:\"fas fa-users\";a:2:{s:5:\"label\";s:5:\"Users\";s:6:\"search\";a:5:{i:0;s:8:\"employee\";i:1;s:8:\"together\";i:2;s:3:\"uer\";i:3;s:12:\"users-people\";i:4;s:5:\"users\";}}s:26:\"fas fa-users-between-lines\";a:2:{s:5:\"label\";s:19:\"Users Between Lines\";s:6:\"search\";a:9:{i:0;s:7:\"covered\";i:1;s:5:\"crowd\";i:2;s:8:\"employee\";i:3;s:5:\"group\";i:4;s:6:\"people\";i:5;s:8:\"together\";i:6;s:3:\"uer\";i:7;s:19:\"users-between-lines\";i:8;s:19:\"users between lines\";}}s:17:\"fas fa-users-gear\";a:2:{s:5:\"label\";s:10:\"Users Gear\";s:6:\"search\";a:5:{i:0;s:8:\"employee\";i:1;s:3:\"uer\";i:2;s:12:\"users-people\";i:3;s:10:\"users-gear\";i:4;s:10:\"users gear\";}}s:17:\"fas fa-users-line\";a:2:{s:5:\"label\";s:10:\"Users Line\";s:6:\"search\";a:9:{i:0;s:5:\"crowd\";i:1;s:8:\"employee\";i:2;s:5:\"group\";i:3;s:4:\"need\";i:4;s:6:\"people\";i:5;s:8:\"together\";i:6;s:3:\"uer\";i:7;s:10:\"users-line\";i:8;s:10:\"users line\";}}s:17:\"fas fa-users-rays\";a:2:{s:5:\"label\";s:10:\"Users Rays\";s:6:\"search\";a:9:{i:0;s:8:\"affected\";i:1;s:5:\"crowd\";i:2;s:8:\"employee\";i:3;s:7:\"focused\";i:4;s:5:\"group\";i:5;s:6:\"people\";i:6;s:3:\"uer\";i:7;s:10:\"users-rays\";i:8;s:10:\"users rays\";}}s:22:\"fas fa-users-rectangle\";a:2:{s:5:\"label\";s:15:\"Users Rectangle\";s:6:\"search\";a:9:{i:0;s:5:\"crowd\";i:1;s:8:\"employee\";i:2;s:5:\"focus\";i:3;s:5:\"group\";i:4;s:6:\"people\";i:5;s:7:\"reached\";i:6;s:3:\"uer\";i:7;s:15:\"users-rectangle\";i:8;s:15:\"users rectangle\";}}s:18:\"fas fa-users-slash\";a:2:{s:5:\"label\";s:11:\"Users Slash\";s:6:\"search\";a:8:{i:0;s:8:\"disabled\";i:1;s:10:\"disconnect\";i:2;s:8:\"employee\";i:3;s:8:\"together\";i:4;s:3:\"uer\";i:5;s:12:\"users-people\";i:6;s:11:\"users-slash\";i:7;s:11:\"users slash\";}}s:23:\"fas fa-users-viewfinder\";a:2:{s:5:\"label\";s:16:\"Users Viewfinder\";s:6:\"search\";a:8:{i:0;s:5:\"crowd\";i:1;s:5:\"focus\";i:2;s:5:\"group\";i:3;s:6:\"people\";i:4;s:8:\"targeted\";i:5;s:3:\"uer\";i:6;s:16:\"users-viewfinder\";i:7;s:16:\"users viewfinder\";}}s:11:\"fab fa-usps\";a:2:{s:5:\"label\";s:28:\"United States Postal Service\";s:6:\"search\";a:6:{i:0;s:8:\"american\";i:1;s:7:\"package\";i:2;s:8:\"shipping\";i:3;s:3:\"usa\";i:4;s:4:\"usps\";i:5;s:28:\"united states postal service\";}}s:15:\"fab fa-ussunnah\";a:2:{s:5:\"label\";s:20:\"us-Sunnah Foundation\";s:6:\"search\";a:2:{i:0;s:8:\"ussunnah\";i:1;s:20:\"us-sunnah foundation\";}}s:15:\"fas fa-utensils\";a:2:{s:5:\"label\";s:8:\"Utensils\";s:6:\"search\";a:11:{i:0;s:7:\"cooking\";i:1;s:7:\"cutlery\";i:2;s:6:\"dining\";i:3;s:6:\"dinner\";i:4;s:3:\"eat\";i:5;s:4:\"food\";i:6;s:4:\"fork\";i:7;s:14:\"fork and knife\";i:8;s:5:\"knife\";i:9;s:10:\"restaurant\";i:10;s:8:\"utensils\";}}s:8:\"fas fa-v\";a:2:{s:5:\"label\";s:1:\"V\";s:6:\"search\";a:4:{i:0;s:22:\"Latin Capital Letter V\";i:1;s:20:\"Latin Small Letter V\";i:2;s:6:\"letter\";i:3;s:1:\"v\";}}s:13:\"fab fa-vaadin\";a:2:{s:5:\"label\";s:6:\"Vaadin\";s:6:\"search\";a:1:{i:0;s:6:\"vaadin\";}}s:18:\"fas fa-van-shuttle\";a:2:{s:5:\"label\";s:11:\"Van Shuttle\";s:6:\"search\";a:10:{i:0;s:7:\"airport\";i:1;s:3:\"bus\";i:2;s:7:\"machine\";i:3;s:7:\"minibus\";i:4;s:21:\"public-transportation\";i:5;s:14:\"transportation\";i:6;s:6:\"travel\";i:7;s:7:\"vehicle\";i:8;s:11:\"van-shuttle\";i:9;s:11:\"van shuttle\";}}s:12:\"fas fa-vault\";a:2:{s:5:\"label\";s:5:\"Vault\";s:6:\"search\";a:10:{i:0;s:4:\"bank\";i:1;s:9:\"important\";i:2;s:10:\"investment\";i:3;s:4:\"lock\";i:4;s:5:\"money\";i:5;s:7:\"premium\";i:6;s:7:\"privacy\";i:7;s:4:\"safe\";i:8;s:6:\"salary\";i:9;s:5:\"vault\";}}s:20:\"fas fa-vector-square\";a:2:{s:5:\"label\";s:13:\"Vector Square\";s:6:\"search\";a:7:{i:0;s:7:\"anchors\";i:1;s:5:\"lines\";i:2;s:6:\"object\";i:3;s:6:\"render\";i:4;s:5:\"shape\";i:5;s:13:\"vector-square\";i:6;s:13:\"vector square\";}}s:12:\"fas fa-venus\";a:2:{s:5:\"label\";s:5:\"Venus\";s:6:\"search\";a:5:{i:0;s:6:\"female\";i:1;s:11:\"female sign\";i:2;s:6:\"gender\";i:3;s:5:\"woman\";i:4;s:5:\"venus\";}}s:19:\"fas fa-venus-double\";a:2:{s:5:\"label\";s:12:\"Venus Double\";s:6:\"search\";a:6:{i:0;s:19:\"Doubled Female Sign\";i:1;s:6:\"female\";i:2;s:6:\"gender\";i:3;s:7:\"lesbian\";i:4;s:12:\"venus-double\";i:5;s:12:\"venus double\";}}s:17:\"fas fa-venus-mars\";a:2:{s:5:\"label\";s:10:\"Venus Mars\";s:6:\"search\";a:7:{i:0;s:32:\"Interlocked Female and Male Sign\";i:1;s:6:\"female\";i:2;s:6:\"gender\";i:3;s:12:\"heterosexual\";i:4;s:4:\"male\";i:5;s:10:\"venus-mars\";i:6;s:10:\"venus mars\";}}s:11:\"fas fa-vest\";a:2:{s:5:\"label\";s:4:\"Vest\";s:6:\"search\";a:4:{i:0;s:5:\"biker\";i:1;s:7:\"fashion\";i:2;s:5:\"style\";i:3;s:4:\"vest\";}}s:19:\"fas fa-vest-patches\";a:2:{s:5:\"label\";s:12:\"Vest Patches\";s:6:\"search\";a:5:{i:0;s:5:\"biker\";i:1;s:7:\"fashion\";i:2;s:5:\"style\";i:3;s:12:\"vest-patches\";i:4;s:12:\"vest patches\";}}s:14:\"fab fa-viacoin\";a:2:{s:5:\"label\";s:7:\"Viacoin\";s:6:\"search\";a:1:{i:0;s:7:\"viacoin\";}}s:13:\"fab fa-viadeo\";a:2:{s:5:\"label\";s:6:\"Viadeo\";s:6:\"search\";a:1:{i:0;s:6:\"viadeo\";}}s:11:\"fas fa-vial\";a:2:{s:5:\"label\";s:4:\"Vial\";s:6:\"search\";a:11:{i:0;s:6:\"ampule\";i:1;s:7:\"chemist\";i:2;s:9:\"chemistry\";i:3;s:10:\"experiment\";i:4;s:9:\"knowledge\";i:5;s:3:\"lab\";i:6;s:6:\"sample\";i:7;s:7:\"science\";i:8;s:4:\"test\";i:9;s:9:\"test tube\";i:10;s:4:\"vial\";}}s:24:\"fas fa-vial-circle-check\";a:2:{s:5:\"label\";s:17:\"Vial Circle Check\";s:6:\"search\";a:15:{i:0;s:6:\"ampule\";i:1;s:7:\"chemist\";i:2;s:9:\"chemistry\";i:3;s:6:\"enable\";i:4;s:12:\"not affected\";i:5;s:2:\"ok\";i:6;s:4:\"okay\";i:7;s:7:\"success\";i:8;s:9:\"test tube\";i:9;s:4:\"tube\";i:10;s:7:\"vaccine\";i:11;s:8:\"validate\";i:12;s:7:\"working\";i:13;s:17:\"vial-circle-check\";i:14;s:17:\"vial circle check\";}}s:17:\"fas fa-vial-virus\";a:2:{s:5:\"label\";s:10:\"Vial Virus\";s:6:\"search\";a:13:{i:0;s:6:\"ampule\";i:1;s:11:\"coronavirus\";i:2;s:8:\"covid-19\";i:3;s:4:\"flue\";i:4;s:9:\"infection\";i:5;s:3:\"lab\";i:6;s:10:\"laboratory\";i:7;s:8:\"pandemic\";i:8;s:4:\"test\";i:9;s:9:\"test tube\";i:10;s:7:\"vaccine\";i:11;s:10:\"vial-virus\";i:12;s:10:\"vial virus\";}}s:12:\"fas fa-vials\";a:2:{s:5:\"label\";s:5:\"Vials\";s:6:\"search\";a:9:{i:0;s:6:\"ampule\";i:1;s:10:\"experiment\";i:2;s:9:\"knowledge\";i:3;s:3:\"lab\";i:4;s:6:\"sample\";i:5;s:7:\"science\";i:6;s:4:\"test\";i:7;s:9:\"test tube\";i:8;s:5:\"vials\";}}s:12:\"fab fa-viber\";a:2:{s:5:\"label\";s:5:\"Viber\";s:6:\"search\";a:1:{i:0;s:5:\"viber\";}}s:12:\"fas fa-video\";a:2:{s:5:\"label\";s:5:\"Video\";s:6:\"search\";a:6:{i:0;s:6:\"camera\";i:1;s:4:\"film\";i:2;s:5:\"movie\";i:3;s:6:\"record\";i:4;s:12:\"video-camera\";i:5;s:5:\"video\";}}s:18:\"fas fa-video-slash\";a:2:{s:5:\"label\";s:11:\"Video Slash\";s:6:\"search\";a:11:{i:0;s:3:\"add\";i:1;s:6:\"create\";i:2;s:8:\"disabled\";i:3;s:10:\"disconnect\";i:4;s:4:\"film\";i:5;s:3:\"new\";i:6;s:8:\"positive\";i:7;s:6:\"record\";i:8;s:5:\"video\";i:9;s:11:\"video-slash\";i:10;s:11:\"video slash\";}}s:13:\"fas fa-vihara\";a:2:{s:5:\"label\";s:6:\"Vihara\";s:6:\"search\";a:5:{i:0;s:8:\"buddhism\";i:1;s:8:\"buddhist\";i:2;s:8:\"building\";i:3;s:9:\"monastery\";i:4;s:6:\"vihara\";}}s:12:\"fab fa-vimeo\";a:2:{s:5:\"label\";s:5:\"Vimeo\";s:6:\"search\";a:1:{i:0;s:5:\"vimeo\";}}s:14:\"fab fa-vimeo-v\";a:2:{s:5:\"label\";s:5:\"Vimeo\";s:6:\"search\";a:2:{i:0;s:5:\"vimeo\";i:1;s:7:\"vimeo-v\";}}s:11:\"fab fa-vine\";a:2:{s:5:\"label\";s:4:\"Vine\";s:6:\"search\";a:1:{i:0;s:4:\"vine\";}}s:12:\"fas fa-virus\";a:2:{s:5:\"label\";s:5:\"Virus\";s:6:\"search\";a:11:{i:0;s:3:\"bug\";i:1;s:11:\"coronavirus\";i:2;s:8:\"covid-19\";i:3;s:3:\"flu\";i:4;s:6:\"health\";i:5;s:9:\"infection\";i:6;s:8:\"pandemic\";i:7;s:4:\"sick\";i:8;s:7:\"vaccine\";i:9;s:5:\"viral\";i:10;s:5:\"virus\";}}s:18:\"fas fa-virus-covid\";a:2:{s:5:\"label\";s:11:\"Virus Covid\";s:6:\"search\";a:11:{i:0;s:3:\"bug\";i:1;s:8:\"covid-19\";i:2;s:3:\"flu\";i:3;s:6:\"health\";i:4;s:9:\"infection\";i:5;s:8:\"pandemic\";i:6;s:7:\"vaccine\";i:7;s:5:\"viral\";i:8;s:5:\"virus\";i:9;s:11:\"virus-covid\";i:10;s:11:\"virus covid\";}}s:24:\"fas fa-virus-covid-slash\";a:2:{s:5:\"label\";s:17:\"Virus Covid Slash\";s:6:\"search\";a:12:{i:0;s:3:\"bug\";i:1;s:8:\"covid-19\";i:2;s:8:\"disabled\";i:3;s:3:\"flu\";i:4;s:6:\"health\";i:5;s:9:\"infection\";i:6;s:8:\"pandemic\";i:7;s:7:\"vaccine\";i:8;s:5:\"viral\";i:9;s:5:\"virus\";i:10;s:17:\"virus-covid-slash\";i:11;s:17:\"virus covid slash\";}}s:18:\"fas fa-virus-slash\";a:2:{s:5:\"label\";s:11:\"Virus Slash\";s:6:\"search\";a:15:{i:0;s:3:\"bug\";i:1;s:11:\"coronavirus\";i:2;s:8:\"covid-19\";i:3;s:4:\"cure\";i:4;s:8:\"disabled\";i:5;s:9:\"eliminate\";i:6;s:3:\"flu\";i:7;s:6:\"health\";i:8;s:9:\"infection\";i:9;s:8:\"pandemic\";i:10;s:4:\"sick\";i:11;s:7:\"vaccine\";i:12;s:5:\"viral\";i:13;s:11:\"virus-slash\";i:14;s:11:\"virus slash\";}}s:14:\"fas fa-viruses\";a:2:{s:5:\"label\";s:7:\"Viruses\";s:6:\"search\";a:13:{i:0;s:4:\"bugs\";i:1;s:11:\"coronavirus\";i:2;s:8:\"covid-19\";i:3;s:3:\"flu\";i:4;s:6:\"health\";i:5;s:9:\"infection\";i:6;s:8:\"multiply\";i:7;s:8:\"pandemic\";i:8;s:4:\"sick\";i:9;s:6:\"spread\";i:10;s:7:\"vaccine\";i:11;s:5:\"viral\";i:12;s:7:\"viruses\";}}s:9:\"fab fa-vk\";a:2:{s:5:\"label\";s:2:\"VK\";s:6:\"search\";a:1:{i:0;s:2:\"vk\";}}s:10:\"fab fa-vnv\";a:2:{s:5:\"label\";s:3:\"VNV\";s:6:\"search\";a:1:{i:0;s:3:\"vnv\";}}s:16:\"fas fa-voicemail\";a:2:{s:5:\"label\";s:9:\"Voicemail\";s:6:\"search\";a:5:{i:0;s:6:\"answer\";i:1;s:5:\"inbox\";i:2;s:7:\"message\";i:3;s:5:\"phone\";i:4;s:9:\"voicemail\";}}s:14:\"fas fa-volcano\";a:2:{s:5:\"label\";s:7:\"Volcano\";s:6:\"search\";a:7:{i:0;s:7:\"caldera\";i:1;s:8:\"eruption\";i:2;s:4:\"lava\";i:3;s:5:\"magma\";i:4;s:8:\"mountain\";i:5;s:5:\"smoke\";i:6;s:7:\"volcano\";}}s:17:\"fas fa-volleyball\";a:2:{s:5:\"label\";s:10:\"Volleyball\";s:6:\"search\";a:6:{i:0;s:4:\"ball\";i:1;s:5:\"beach\";i:2;s:4:\"game\";i:3;s:8:\"olympics\";i:4;s:5:\"sport\";i:5;s:10:\"volleyball\";}}s:18:\"fas fa-volume-high\";a:2:{s:5:\"label\";s:11:\"Volume High\";s:6:\"search\";a:10:{i:0;s:5:\"audio\";i:1;s:6:\"higher\";i:2;s:4:\"loud\";i:3;s:6:\"louder\";i:4;s:5:\"music\";i:5;s:5:\"sound\";i:6;s:7:\"speaker\";i:7;s:19:\"speaker high volume\";i:8;s:11:\"volume-high\";i:9;s:11:\"volume high\";}}s:17:\"fas fa-volume-low\";a:2:{s:5:\"label\";s:10:\"Volume Low\";s:6:\"search\";a:10:{i:0;s:5:\"audio\";i:1;s:5:\"lower\";i:2;s:5:\"music\";i:3;s:7:\"quieter\";i:4;s:4:\"soft\";i:5;s:5:\"sound\";i:6;s:7:\"speaker\";i:7;s:18:\"speaker low volume\";i:8;s:10:\"volume-low\";i:9;s:10:\"volume low\";}}s:17:\"fas fa-volume-off\";a:2:{s:5:\"label\";s:10:\"Volume Off\";s:6:\"search\";a:9:{i:0;s:5:\"audio\";i:1;s:3:\"ban\";i:2;s:5:\"music\";i:3;s:4:\"mute\";i:4;s:5:\"quiet\";i:5;s:6:\"silent\";i:6;s:5:\"sound\";i:7;s:10:\"volume-off\";i:8;s:10:\"volume off\";}}s:19:\"fas fa-volume-xmark\";a:2:{s:5:\"label\";s:12:\"Volume Xmark\";s:6:\"search\";a:7:{i:0;s:5:\"audio\";i:1;s:5:\"music\";i:2;s:5:\"quiet\";i:3;s:5:\"sound\";i:4;s:7:\"speaker\";i:5;s:12:\"volume-xmark\";i:6;s:12:\"volume xmark\";}}s:19:\"fas fa-vr-cardboard\";a:2:{s:5:\"label\";s:12:\"Vr Cardboard\";s:6:\"search\";a:7:{i:0;s:2:\"3d\";i:1;s:7:\"augment\";i:2;s:6:\"google\";i:3;s:7:\"reality\";i:4;s:7:\"virtual\";i:5;s:12:\"vr-cardboard\";i:6;s:12:\"vr cardboard\";}}s:12:\"fab fa-vuejs\";a:2:{s:5:\"label\";s:6:\"Vue.js\";s:6:\"search\";a:2:{i:0;s:5:\"vuejs\";i:1;s:6:\"vue.js\";}}s:8:\"fas fa-w\";a:2:{s:5:\"label\";s:1:\"W\";s:6:\"search\";a:4:{i:0;s:22:\"Latin Capital Letter W\";i:1;s:20:\"Latin Small Letter W\";i:2;s:6:\"letter\";i:3;s:1:\"w\";}}s:20:\"fas fa-walkie-talkie\";a:2:{s:5:\"label\";s:13:\"Walkie Talkie\";s:6:\"search\";a:9:{i:0;s:13:\"communication\";i:1;s:4:\"copy\";i:2;s:8:\"intercom\";i:3;s:4:\"over\";i:4;s:8:\"portable\";i:5;s:5:\"radio\";i:6;s:13:\"two way radio\";i:7;s:13:\"walkie-talkie\";i:8;s:13:\"walkie talkie\";}}s:13:\"fas fa-wallet\";a:2:{s:5:\"label\";s:6:\"Wallet\";s:6:\"search\";a:6:{i:0;s:8:\"billfold\";i:1;s:4:\"cash\";i:2;s:8:\"currency\";i:3;s:5:\"money\";i:4;s:6:\"salary\";i:5;s:6:\"wallet\";}}s:17:\"fas fa-wand-magic\";a:2:{s:5:\"label\";s:10:\"Wand Magic\";s:6:\"search\";a:10:{i:0;s:12:\"autocomplete\";i:1;s:9:\"automatic\";i:2;s:4:\"mage\";i:3;s:5:\"magic\";i:4;s:5:\"spell\";i:5;s:4:\"wand\";i:6;s:5:\"witch\";i:7;s:6:\"wizard\";i:8;s:10:\"wand-magic\";i:9;s:10:\"wand magic\";}}s:26:\"fas fa-wand-magic-sparkles\";a:2:{s:5:\"label\";s:19:\"Wand Magic Sparkles\";s:6:\"search\";a:8:{i:0;s:4:\"auto\";i:1;s:5:\"magic\";i:2;s:10:\"magic wand\";i:3;s:5:\"trick\";i:4;s:5:\"witch\";i:5;s:6:\"wizard\";i:6;s:19:\"wand-magic-sparkles\";i:7;s:19:\"wand magic sparkles\";}}s:20:\"fas fa-wand-sparkles\";a:2:{s:5:\"label\";s:13:\"Wand Sparkles\";s:6:\"search\";a:11:{i:0;s:12:\"autocomplete\";i:1;s:9:\"automatic\";i:2;s:7:\"fantasy\";i:3;s:9:\"halloween\";i:4;s:7:\"holiday\";i:5;s:5:\"magic\";i:6;s:6:\"weapon\";i:7;s:5:\"witch\";i:8;s:6:\"wizard\";i:9;s:13:\"wand-sparkles\";i:10;s:13:\"wand sparkles\";}}s:16:\"fas fa-warehouse\";a:2:{s:5:\"label\";s:9:\"Warehouse\";s:6:\"search\";a:6:{i:0;s:8:\"building\";i:1;s:8:\"capacity\";i:2;s:6:\"garage\";i:3;s:9:\"inventory\";i:4;s:7:\"storage\";i:5;s:9:\"warehouse\";}}s:26:\"fab fa-watchman-monitoring\";a:2:{s:5:\"label\";s:19:\"Watchman Monitoring\";s:6:\"search\";a:2:{i:0;s:19:\"watchman-monitoring\";i:1;s:19:\"watchman monitoring\";}}s:12:\"fas fa-water\";a:2:{s:5:\"label\";s:5:\"Water\";s:6:\"search\";a:7:{i:0;s:4:\"lake\";i:1;s:6:\"liquid\";i:2;s:5:\"ocean\";i:3;s:3:\"sea\";i:4;s:4:\"swim\";i:5;s:3:\"wet\";i:6;s:5:\"water\";}}s:19:\"fas fa-water-ladder\";a:2:{s:5:\"label\";s:12:\"Water Ladder\";s:6:\"search\";a:6:{i:0;s:6:\"ladder\";i:1;s:10:\"recreation\";i:2;s:4:\"swim\";i:3;s:5:\"water\";i:4;s:12:\"water-ladder\";i:5;s:12:\"water ladder\";}}s:18:\"fas fa-wave-square\";a:2:{s:5:\"label\";s:11:\"Wave Square\";s:6:\"search\";a:5:{i:0;s:9:\"frequency\";i:1;s:5:\"pulse\";i:2;s:6:\"signal\";i:3;s:11:\"wave-square\";i:4;s:11:\"wave square\";}}s:11:\"fab fa-waze\";a:2:{s:5:\"label\";s:4:\"Waze\";s:6:\"search\";a:1:{i:0;s:4:\"waze\";}}s:18:\"fab fa-web-awesome\";a:2:{s:5:\"label\";s:11:\"Web Awesome\";s:6:\"search\";a:7:{i:0;s:7:\" coding\";i:1;s:11:\" components\";i:2;s:6:\" crown\";i:3;s:4:\" web\";i:4;s:7:\"awesome\";i:5;s:11:\"web-awesome\";i:6;s:11:\"web awesome\";}}s:14:\"fab fa-webflow\";a:2:{s:5:\"label\";s:7:\"Webflow\";s:6:\"search\";a:1:{i:0;s:7:\"webflow\";}}s:13:\"fab fa-weebly\";a:2:{s:5:\"label\";s:6:\"Weebly\";s:6:\"search\";a:1:{i:0;s:6:\"weebly\";}}s:12:\"fab fa-weibo\";a:2:{s:5:\"label\";s:5:\"Weibo\";s:6:\"search\";a:1:{i:0;s:5:\"weibo\";}}s:21:\"fas fa-weight-hanging\";a:2:{s:5:\"label\";s:14:\"Weight Hanging\";s:6:\"search\";a:5:{i:0;s:5:\"anvil\";i:1;s:5:\"heavy\";i:2;s:11:\"measurement\";i:3;s:14:\"weight-hanging\";i:4;s:14:\"weight hanging\";}}s:19:\"fas fa-weight-scale\";a:2:{s:5:\"label\";s:12:\"Weight Scale\";s:6:\"search\";a:6:{i:0;s:6:\"health\";i:1;s:11:\"measurement\";i:2;s:5:\"scale\";i:3;s:6:\"weight\";i:4;s:12:\"weight-scale\";i:5;s:12:\"weight scale\";}}s:13:\"fab fa-weixin\";a:2:{s:5:\"label\";s:15:\"Weixin (WeChat)\";s:6:\"search\";a:2:{i:0;s:6:\"weixin\";i:1;s:15:\"weixin (wechat)\";}}s:15:\"fab fa-whatsapp\";a:2:{s:5:\"label\";s:10:\"What\'s App\";s:6:\"search\";a:2:{i:0;s:8:\"whatsapp\";i:1;s:10:\"what\'s app\";}}s:16:\"fas fa-wheat-awn\";a:2:{s:5:\"label\";s:9:\"Wheat Awn\";s:6:\"search\";a:7:{i:0;s:11:\"agriculture\";i:1;s:6:\"autumn\";i:2;s:4:\"fall\";i:3;s:7:\"farming\";i:4;s:5:\"grain\";i:5;s:9:\"wheat-awn\";i:6;s:9:\"wheat awn\";}}s:35:\"fas fa-wheat-awn-circle-exclamation\";a:2:{s:5:\"label\";s:28:\"Wheat Awn Circle Exclamation\";s:6:\"search\";a:10:{i:0;s:8:\"affected\";i:1;s:6:\"failed\";i:2;s:6:\"famine\";i:3;s:4:\"food\";i:4;s:6:\"gluten\";i:5;s:6:\"hunger\";i:6;s:6:\"starve\";i:7;s:5:\"straw\";i:8;s:28:\"wheat-awn-circle-exclamation\";i:9;s:28:\"wheat awn circle exclamation\";}}s:17:\"fas fa-wheelchair\";a:2:{s:5:\"label\";s:10:\"Wheelchair\";s:6:\"search\";a:4:{i:0;s:8:\"disabled\";i:1;s:3:\"uer\";i:2;s:12:\"users-people\";i:3;s:10:\"wheelchair\";}}s:22:\"fas fa-wheelchair-move\";a:2:{s:5:\"label\";s:15:\"Wheelchair Move\";s:6:\"search\";a:9:{i:0;s:6:\"access\";i:1;s:8:\"disabled\";i:2;s:8:\"handicap\";i:3;s:10:\"impairment\";i:4;s:8:\"physical\";i:5;s:3:\"uer\";i:6;s:17:\"wheelchair symbol\";i:7;s:15:\"wheelchair-move\";i:8;s:15:\"wheelchair move\";}}s:20:\"fas fa-whiskey-glass\";a:2:{s:5:\"label\";s:13:\"Whiskey Glass\";s:6:\"search\";a:16:{i:0;s:7:\"alcohol\";i:1;s:3:\"bar\";i:2;s:8:\"beverage\";i:3;s:7:\"bourbon\";i:4;s:5:\"drink\";i:5;s:5:\"glass\";i:6;s:6:\"liquor\";i:7;s:4:\"neat\";i:8;s:3:\"rye\";i:9;s:6:\"scotch\";i:10;s:4:\"shot\";i:11;s:7:\"tumbler\";i:12;s:13:\"tumbler glass\";i:13;s:6:\"whisky\";i:14;s:13:\"whiskey-glass\";i:15;s:13:\"whiskey glass\";}}s:12:\"fab fa-whmcs\";a:2:{s:5:\"label\";s:5:\"WHMCS\";s:6:\"search\";a:1:{i:0;s:5:\"whmcs\";}}s:11:\"fas fa-wifi\";a:2:{s:5:\"label\";s:4:\"Wifi\";s:6:\"search\";a:8:{i:0;s:10:\"connection\";i:1;s:7:\"hotspot\";i:2;s:8:\"internet\";i:3;s:7:\"network\";i:4;s:6:\"signal\";i:5;s:8:\"wireless\";i:6;s:3:\"www\";i:7;s:4:\"wifi\";}}s:18:\"fab fa-wikipedia-w\";a:2:{s:5:\"label\";s:11:\"Wikipedia W\";s:6:\"search\";a:2:{i:0;s:11:\"wikipedia-w\";i:1;s:11:\"wikipedia w\";}}s:11:\"fas fa-wind\";a:2:{s:5:\"label\";s:4:\"Wind\";s:6:\"search\";a:7:{i:0;s:3:\"air\";i:1;s:4:\"blow\";i:2;s:6:\"breeze\";i:3;s:4:\"fall\";i:4;s:8:\"seasonal\";i:5;s:7:\"weather\";i:6;s:4:\"wind\";}}s:22:\"fas fa-window-maximize\";a:2:{s:5:\"label\";s:23:\"Window Maximize (solid)\";s:6:\"search\";a:7:{i:0;s:8:\"Maximize\";i:1;s:7:\"browser\";i:2;s:8:\"computer\";i:3;s:11:\"development\";i:4;s:6:\"expand\";i:5;s:15:\"window-maximize\";i:6;s:15:\"window maximize\";}}s:22:\"far fa-window-maximize\";a:2:{s:5:\"label\";s:25:\"Window Maximize (regular)\";s:6:\"search\";a:7:{i:0;s:8:\"Maximize\";i:1;s:7:\"browser\";i:2;s:8:\"computer\";i:3;s:11:\"development\";i:4;s:6:\"expand\";i:5;s:15:\"window-maximize\";i:6;s:15:\"window maximize\";}}s:22:\"fas fa-window-minimize\";a:2:{s:5:\"label\";s:23:\"Window Minimize (solid)\";s:6:\"search\";a:7:{i:0;s:8:\"Minimize\";i:1;s:7:\"browser\";i:2;s:8:\"collapse\";i:3;s:8:\"computer\";i:4;s:11:\"development\";i:5;s:15:\"window-minimize\";i:6;s:15:\"window minimize\";}}s:22:\"far fa-window-minimize\";a:2:{s:5:\"label\";s:25:\"Window Minimize (regular)\";s:6:\"search\";a:7:{i:0;s:8:\"Minimize\";i:1;s:7:\"browser\";i:2;s:8:\"collapse\";i:3;s:8:\"computer\";i:4;s:11:\"development\";i:5;s:15:\"window-minimize\";i:6;s:15:\"window minimize\";}}s:21:\"fas fa-window-restore\";a:2:{s:5:\"label\";s:22:\"Window Restore (solid)\";s:6:\"search\";a:5:{i:0;s:7:\"browser\";i:1;s:8:\"computer\";i:2;s:11:\"development\";i:3;s:14:\"window-restore\";i:4;s:14:\"window restore\";}}s:21:\"far fa-window-restore\";a:2:{s:5:\"label\";s:24:\"Window Restore (regular)\";s:6:\"search\";a:5:{i:0;s:7:\"browser\";i:1;s:8:\"computer\";i:2;s:11:\"development\";i:3;s:14:\"window-restore\";i:4;s:14:\"window restore\";}}s:14:\"fab fa-windows\";a:2:{s:5:\"label\";s:7:\"Windows\";s:6:\"search\";a:4:{i:0;s:9:\"microsoft\";i:1;s:16:\"operating system\";i:2;s:2:\"os\";i:3;s:7:\"windows\";}}s:18:\"fas fa-wine-bottle\";a:2:{s:5:\"label\";s:11:\"Wine Bottle\";s:6:\"search\";a:10:{i:0;s:7:\"alcohol\";i:1;s:8:\"beverage\";i:2;s:8:\"cabernet\";i:3;s:5:\"drink\";i:4;s:5:\"glass\";i:5;s:6:\"grapes\";i:6;s:6:\"merlot\";i:7;s:9:\"sauvignon\";i:8;s:11:\"wine-bottle\";i:9;s:11:\"wine bottle\";}}s:17:\"fas fa-wine-glass\";a:2:{s:5:\"label\";s:10:\"Wine Glass\";s:6:\"search\";a:12:{i:0;s:7:\"alcohol\";i:1;s:3:\"bar\";i:2;s:8:\"beverage\";i:3;s:8:\"cabernet\";i:4;s:5:\"drink\";i:5;s:5:\"glass\";i:6;s:6:\"grapes\";i:7;s:6:\"merlot\";i:8;s:9:\"sauvignon\";i:9;s:4:\"wine\";i:10;s:10:\"wine glass\";i:11;s:10:\"wine-glass\";}}s:23:\"fas fa-wine-glass-empty\";a:2:{s:5:\"label\";s:16:\"Wine Glass Empty\";s:6:\"search\";a:9:{i:0;s:7:\"alcohol\";i:1;s:8:\"beverage\";i:2;s:8:\"cabernet\";i:3;s:5:\"drink\";i:4;s:6:\"grapes\";i:5;s:6:\"merlot\";i:6;s:9:\"sauvignon\";i:7;s:16:\"wine-glass-empty\";i:8;s:16:\"wine glass empty\";}}s:22:\"fab fa-wirsindhandwerk\";a:2:{s:5:\"label\";s:15:\"wirsindhandwerk\";s:6:\"search\";a:1:{i:0;s:15:\"wirsindhandwerk\";}}s:10:\"fab fa-wix\";a:2:{s:5:\"label\";s:3:\"Wix\";s:6:\"search\";a:1:{i:0;s:3:\"wix\";}}s:27:\"fab fa-wizards-of-the-coast\";a:2:{s:5:\"label\";s:20:\"Wizards of the Coast\";s:6:\"search\";a:9:{i:0;s:18:\"Dungeons & Dragons\";i:1;s:3:\"d&d\";i:2;s:3:\"dnd\";i:3;s:7:\"fantasy\";i:4;s:4:\"game\";i:5;s:6:\"gaming\";i:6;s:8:\"tabletop\";i:7;s:20:\"wizards-of-the-coast\";i:8;s:20:\"wizards of the coast\";}}s:11:\"fab fa-wodu\";a:2:{s:5:\"label\";s:4:\"Wodu\";s:6:\"search\";a:1:{i:0;s:4:\"wodu\";}}s:26:\"fab fa-wolf-pack-battalion\";a:2:{s:5:\"label\";s:19:\"Wolf Pack Battalion\";s:6:\"search\";a:2:{i:0;s:19:\"wolf-pack-battalion\";i:1;s:19:\"wolf pack battalion\";}}s:15:\"fas fa-won-sign\";a:2:{s:5:\"label\";s:8:\"Won Sign\";s:6:\"search\";a:4:{i:0;s:8:\"Won Sign\";i:1;s:8:\"currency\";i:2;s:8:\"won-sign\";i:3;s:8:\"won sign\";}}s:16:\"fab fa-wordpress\";a:2:{s:5:\"label\";s:14:\"WordPress Logo\";s:6:\"search\";a:2:{i:0;s:9:\"wordpress\";i:1;s:14:\"wordpress logo\";}}s:23:\"fab fa-wordpress-simple\";a:2:{s:5:\"label\";s:16:\"Wordpress Simple\";s:6:\"search\";a:2:{i:0;s:16:\"wordpress-simple\";i:1;s:16:\"wordpress simple\";}}s:11:\"fas fa-worm\";a:2:{s:5:\"label\";s:4:\"Worm\";s:6:\"search\";a:4:{i:0;s:4:\"dirt\";i:1;s:6:\"garden\";i:2;s:4:\"worm\";i:3;s:7:\"wriggle\";}}s:17:\"fab fa-wpbeginner\";a:2:{s:5:\"label\";s:10:\"WPBeginner\";s:6:\"search\";a:1:{i:0;s:10:\"wpbeginner\";}}s:17:\"fab fa-wpexplorer\";a:2:{s:5:\"label\";s:10:\"WPExplorer\";s:6:\"search\";a:1:{i:0;s:10:\"wpexplorer\";}}s:14:\"fab fa-wpforms\";a:2:{s:5:\"label\";s:7:\"WPForms\";s:6:\"search\";a:1:{i:0;s:7:\"wpforms\";}}s:14:\"fab fa-wpressr\";a:2:{s:5:\"label\";s:7:\"wpressr\";s:6:\"search\";a:2:{i:0;s:7:\"rendact\";i:1;s:7:\"wpressr\";}}s:13:\"fas fa-wrench\";a:2:{s:5:\"label\";s:6:\"Wrench\";s:6:\"search\";a:12:{i:0;s:13:\"configuration\";i:1;s:12:\"construction\";i:2;s:9:\"equipment\";i:3;s:3:\"fix\";i:4;s:8:\"mechanic\";i:5;s:6:\"modify\";i:6;s:8:\"plumbing\";i:7;s:8:\"settings\";i:8;s:7:\"spanner\";i:9;s:4:\"tool\";i:10;s:6:\"update\";i:11;s:6:\"wrench\";}}s:8:\"fas fa-x\";a:2:{s:5:\"label\";s:1:\"X\";s:6:\"search\";a:5:{i:0;s:22:\"Latin Capital Letter X\";i:1;s:20:\"Latin Small Letter X\";i:2;s:6:\"letter\";i:3;s:7:\"uncheck\";i:4;s:1:\"x\";}}s:12:\"fas fa-x-ray\";a:2:{s:5:\"label\";s:5:\"X Ray\";s:6:\"search\";a:7:{i:0;s:6:\"health\";i:1;s:7:\"medical\";i:2;s:19:\"radiological images\";i:3;s:9:\"radiology\";i:4;s:8:\"skeleton\";i:5;s:5:\"x-ray\";i:6;s:5:\"x ray\";}}s:16:\"fab fa-x-twitter\";a:2:{s:5:\"label\";s:9:\"X Twitter\";s:6:\"search\";a:5:{i:0;s:6:\" elon\";i:1;s:8:\" twitter\";i:2;s:2:\" x\";i:3;s:9:\"x-twitter\";i:4;s:9:\"x twitter\";}}s:11:\"fab fa-xbox\";a:2:{s:5:\"label\";s:4:\"Xbox\";s:6:\"search\";a:1:{i:0;s:4:\"xbox\";}}s:11:\"fab fa-xing\";a:2:{s:5:\"label\";s:4:\"Xing\";s:6:\"search\";a:1:{i:0;s:4:\"xing\";}}s:12:\"fas fa-xmark\";a:2:{s:5:\"label\";s:5:\"Xmark\";s:6:\"search\";a:23:{i:0;s:14:\"Cancellation X\";i:1;s:19:\"Multiplication Sign\";i:2;s:16:\"Multiplication X\";i:3;s:6:\"cancel\";i:4;s:5:\"close\";i:5;s:5:\"cross\";i:6;s:10:\"cross mark\";i:7;s:5:\"error\";i:8;s:4:\"exit\";i:9;s:9:\"incorrect\";i:10;s:4:\"mark\";i:11;s:14:\"multiplication\";i:12;s:8:\"multiply\";i:13;s:6:\"notice\";i:14;s:12:\"notification\";i:15;s:6:\"notify\";i:16;s:7:\"problem\";i:17;s:4:\"sign\";i:18;s:7:\"uncheck\";i:19;s:5:\"wrong\";i:20;s:1:\"x\";i:21;s:2:\"×\";i:22;s:5:\"xmark\";}}s:19:\"fas fa-xmarks-lines\";a:2:{s:5:\"label\";s:12:\"Xmarks Lines\";s:6:\"search\";a:7:{i:0;s:9:\"barricade\";i:1;s:7:\"barrier\";i:2;s:5:\"fence\";i:3;s:6:\"poison\";i:4;s:9:\"roadblock\";i:5;s:12:\"xmarks-lines\";i:6;s:12:\"xmarks lines\";}}s:8:\"fas fa-y\";a:2:{s:5:\"label\";s:1:\"Y\";s:6:\"search\";a:6:{i:0;s:22:\"Latin Capital Letter Y\";i:1;s:20:\"Latin Small Letter Y\";i:2;s:6:\"letter\";i:3;s:3:\"yay\";i:4;s:3:\"yes\";i:5;s:1:\"y\";}}s:19:\"fab fa-y-combinator\";a:2:{s:5:\"label\";s:12:\"Y Combinator\";s:6:\"search\";a:2:{i:0;s:12:\"y-combinator\";i:1;s:12:\"y combinator\";}}s:12:\"fab fa-yahoo\";a:2:{s:5:\"label\";s:10:\"Yahoo Logo\";s:6:\"search\";a:2:{i:0;s:5:\"yahoo\";i:1;s:10:\"yahoo logo\";}}s:13:\"fab fa-yammer\";a:2:{s:5:\"label\";s:6:\"Yammer\";s:6:\"search\";a:1:{i:0;s:6:\"yammer\";}}s:13:\"fab fa-yandex\";a:2:{s:5:\"label\";s:6:\"Yandex\";s:6:\"search\";a:1:{i:0;s:6:\"yandex\";}}s:27:\"fab fa-yandex-international\";a:2:{s:5:\"label\";s:20:\"Yandex International\";s:6:\"search\";a:2:{i:0;s:20:\"yandex-international\";i:1;s:20:\"yandex international\";}}s:11:\"fab fa-yarn\";a:2:{s:5:\"label\";s:4:\"Yarn\";s:6:\"search\";a:1:{i:0;s:4:\"yarn\";}}s:11:\"fab fa-yelp\";a:2:{s:5:\"label\";s:4:\"Yelp\";s:6:\"search\";a:1:{i:0;s:4:\"yelp\";}}s:15:\"fas fa-yen-sign\";a:2:{s:5:\"label\";s:8:\"Yen Sign\";s:6:\"search\";a:4:{i:0;s:8:\"Yen Sign\";i:1;s:8:\"currency\";i:2;s:8:\"yen-sign\";i:3;s:8:\"yen sign\";}}s:15:\"fas fa-yin-yang\";a:2:{s:5:\"label\";s:8:\"Yin Yang\";s:6:\"search\";a:10:{i:0;s:6:\"daoism\";i:1;s:9:\"opposites\";i:2;s:8:\"religion\";i:3;s:3:\"tao\";i:4;s:6:\"taoism\";i:5;s:6:\"taoist\";i:6;s:4:\"yang\";i:7;s:3:\"yin\";i:8;s:8:\"yin yang\";i:9;s:8:\"yin-yang\";}}s:12:\"fab fa-yoast\";a:2:{s:5:\"label\";s:5:\"Yoast\";s:6:\"search\";a:1:{i:0;s:5:\"yoast\";}}s:14:\"fab fa-youtube\";a:2:{s:5:\"label\";s:7:\"YouTube\";s:6:\"search\";a:5:{i:0;s:4:\"film\";i:1;s:5:\"video\";i:2;s:12:\"youtube-play\";i:3;s:14:\"youtube-square\";i:4;s:7:\"youtube\";}}s:8:\"fas fa-z\";a:2:{s:5:\"label\";s:1:\"Z\";s:6:\"search\";a:4:{i:0;s:22:\"Latin Capital Letter Z\";i:1;s:20:\"Latin Small Letter Z\";i:2;s:6:\"letter\";i:3;s:1:\"z\";}}s:12:\"fab fa-zhihu\";a:2:{s:5:\"label\";s:5:\"Zhihu\";s:6:\"search\";a:1:{i:0;s:5:\"zhihu\";}}}','no'),
(777,'um_fields','a:7:{i:3;a:6:{s:4:\"type\";s:4:\"text\";s:7:\"metakey\";s:1:\"3\";s:5:\"title\";s:1:\"1\";s:10:\"visibility\";s:3:\"all\";s:5:\"label\";s:1:\"2\";s:6:\"public\";s:1:\"1\";}s:12:\"contact_name\";a:10:{s:4:\"type\";s:4:\"text\";s:7:\"metakey\";s:12:\"contact_name\";s:5:\"title\";s:12:\"Contact Name\";s:9:\"min_chars\";i:1;s:10:\"visibility\";s:3:\"all\";s:5:\"label\";s:12:\"Contact Name\";s:6:\"public\";s:2:\"-1\";s:9:\"max_chars\";i:24;s:8:\"required\";b:1;s:8:\"editable\";b:0;}s:14:\"contact_name_3\";a:8:{s:4:\"type\";s:4:\"text\";s:5:\"title\";s:15:\"Contact Name #3\";s:7:\"metakey\";s:14:\"contact_name_3\";s:9:\"min_chars\";i:3;s:10:\"visibility\";s:4:\"edit\";s:5:\"label\";s:12:\"Contact Name\";s:6:\"public\";s:1:\"1\";s:9:\"max_chars\";i:24;}s:19:\"legal_business_name\";a:10:{s:4:\"type\";s:4:\"text\";s:7:\"metakey\";s:19:\"legal_business_name\";s:5:\"title\";s:19:\"Legal Business Name\";s:9:\"min_chars\";i:3;s:10:\"visibility\";s:3:\"all\";s:5:\"label\";s:19:\"Legal Business Name\";s:6:\"public\";s:2:\"-1\";s:9:\"max_chars\";i:60;s:8:\"required\";b:1;s:8:\"editable\";b:0;}s:23:\"register_check_business\";a:8:{s:4:\"type\";s:8:\"checkbox\";s:7:\"metakey\";s:23:\"register_check_business\";s:5:\"title\";s:5:\"Title\";s:7:\"options\";a:1:{i:0;s:47:\"I confirm I have a registered legal US Business\";}s:10:\"visibility\";s:3:\"all\";s:6:\"public\";s:1:\"1\";s:8:\"required\";b:1;s:8:\"editable\";b:0;}s:17:\"checkbox_business\";a:8:{s:4:\"type\";s:8:\"checkbox\";s:7:\"metakey\";s:17:\"checkbox_business\";s:5:\"title\";s:17:\"Checkbox business\";s:7:\"options\";a:1:{i:0;s:47:\"I confirm I have a registered legal US Business\";}s:10:\"visibility\";s:3:\"all\";s:6:\"public\";s:2:\"-1\";s:8:\"required\";b:1;s:8:\"editable\";b:0;}s:23:\"checkbox_privacy_policy\";a:8:{s:4:\"type\";s:8:\"checkbox\";s:7:\"metakey\";s:23:\"checkbox_privacy_policy\";s:5:\"title\";s:23:\"Checkbox Privacy Policy\";s:7:\"options\";a:1:{i:0;s:87:\"By submitting this information, I accept our Terms & Conditions and Privacy Policy.\";}s:10:\"visibility\";s:3:\"all\";s:6:\"public\";s:2:\"-1\";s:8:\"required\";b:1;s:8:\"editable\";b:0;}}','yes'),
(831,'_transient_um_count_users_awaiting_admin_review','0','yes'),
(832,'_transient_um_count_users_awaiting_email_confirmation','0','yes'),
(833,'_transient_um_count_users_rejected','2','yes'),
(834,'_transient_um_count_users_inactive','0','yes'),
(906,'_transient_timeout_dirsize_cache','2032941868','no'),
(907,'_transient_dirsize_cache','a:1951:{s:45:\"/www/btpayments_753/public/wp-content/upgrade\";i:0;s:55:\"/www/btpayments_753/public/wp-content/languages/plugins\";i:0;s:47:\"/www/btpayments_753/public/wp-content/languages\";i:0;s:72:\"/www/btpayments_753/public/wp-content/mu-plugins/kinsta-mu-plugins/cache\";i:23065;s:75:\"/www/btpayments_753/public/wp-content/mu-plugins/kinsta-mu-plugins/security\";i:19879;s:82:\"/www/btpayments_753/public/wp-content/mu-plugins/kinsta-mu-plugins/wp-cli/commands\";i:9677;s:73:\"/www/btpayments_753/public/wp-content/mu-plugins/kinsta-mu-plugins/wp-cli\";i:11253;s:86:\"/www/btpayments_753/public/wp-content/mu-plugins/kinsta-mu-plugins/admin/assets/images\";i:27171;s:83:\"/www/btpayments_753/public/wp-content/mu-plugins/kinsta-mu-plugins/admin/assets/css\";i:2256;s:92:\"/www/btpayments_753/public/wp-content/mu-plugins/kinsta-mu-plugins/admin/assets/translations\";i:27816;s:79:\"/www/btpayments_753/public/wp-content/mu-plugins/kinsta-mu-plugins/admin/assets\";i:57243;s:87:\"/www/btpayments_753/public/wp-content/mu-plugins/kinsta-mu-plugins/admin/pages/partials\";i:810;s:78:\"/www/btpayments_753/public/wp-content/mu-plugins/kinsta-mu-plugins/admin/pages\";i:14917;s:72:\"/www/btpayments_753/public/wp-content/mu-plugins/kinsta-mu-plugins/admin\";i:82929;s:72:\"/www/btpayments_753/public/wp-content/mu-plugins/kinsta-mu-plugins/utils\";i:1752;s:85:\"/www/btpayments_753/public/wp-content/mu-plugins/kinsta-mu-plugins/compat/third-party\";i:5365;s:73:\"/www/btpayments_753/public/wp-content/mu-plugins/kinsta-mu-plugins/compat\";i:6085;s:66:\"/www/btpayments_753/public/wp-content/mu-plugins/kinsta-mu-plugins\";i:147277;s:48:\"/www/btpayments_753/public/wp-content/mu-plugins\";i:148719;s:37:\"/www/btpayments_753/public/wp-content\";i:148747;s:56:\"/www/btpayments_753/public/wp-includes/sodium_compat/lib\";i:87360;s:82:\"/www/btpayments_753/public/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge\";i:602;s:79:\"/www/btpayments_753/public/wp-includes/sodium_compat/namespaced/Core/Curve25519\";i:820;s:77:\"/www/btpayments_753/public/wp-includes/sodium_compat/namespaced/Core/Poly1305\";i:112;s:77:\"/www/btpayments_753/public/wp-includes/sodium_compat/namespaced/Core/ChaCha20\";i:224;s:68:\"/www/btpayments_753/public/wp-includes/sodium_compat/namespaced/Core\";i:2444;s:63:\"/www/btpayments_753/public/wp-includes/sodium_compat/namespaced\";i:2698;s:62:\"/www/btpayments_753/public/wp-includes/sodium_compat/src/PHP52\";i:4116;s:74:\"/www/btpayments_753/public/wp-includes/sodium_compat/src/Core/SecretStream\";i:3624;s:68:\"/www/btpayments_753/public/wp-includes/sodium_compat/src/Core/Base64\";i:22135;s:70:\"/www/btpayments_753/public/wp-includes/sodium_compat/src/Core/ChaCha20\";i:5264;s:75:\"/www/btpayments_753/public/wp-includes/sodium_compat/src/Core/Curve25519/Ge\";i:7881;s:72:\"/www/btpayments_753/public/wp-includes/sodium_compat/src/Core/Curve25519\";i:121645;s:70:\"/www/btpayments_753/public/wp-includes/sodium_compat/src/Core/Poly1305\";i:12912;s:61:\"/www/btpayments_753/public/wp-includes/sodium_compat/src/Core\";i:452743;s:72:\"/www/btpayments_753/public/wp-includes/sodium_compat/src/Core32/ChaCha20\";i:6407;s:76:\"/www/btpayments_753/public/wp-includes/sodium_compat/src/Core32/SecretStream\";i:3656;s:77:\"/www/btpayments_753/public/wp-includes/sodium_compat/src/Core32/Curve25519/Ge\";i:8177;s:74:\"/www/btpayments_753/public/wp-includes/sodium_compat/src/Core32/Curve25519\";i:122690;s:72:\"/www/btpayments_753/public/wp-includes/sodium_compat/src/Core32/Poly1305\";i:15965;s:63:\"/www/btpayments_753/public/wp-includes/sodium_compat/src/Core32\";i:437041;s:56:\"/www/btpayments_753/public/wp-includes/sodium_compat/src\";i:1207254;s:52:\"/www/btpayments_753/public/wp-includes/sodium_compat\";i:1303525;s:48:\"/www/btpayments_753/public/wp-includes/PHPMailer\";i:233227;s:53:\"/www/btpayments_753/public/wp-includes/block-patterns\";i:8843;s:52:\"/www/btpayments_753/public/wp-includes/js/codemirror\";i:1287141;s:50:\"/www/btpayments_753/public/wp-includes/js/plupload\";i:490468;s:47:\"/www/btpayments_753/public/wp-includes/js/jcrop\";i:24976;s:58:\"/www/btpayments_753/public/wp-includes/js/dist/development\";i:179848;s:53:\"/www/btpayments_753/public/wp-includes/js/dist/vendor\";i:2714416;s:46:\"/www/btpayments_753/public/wp-includes/js/dist\";i:20677627;s:51:\"/www/btpayments_753/public/wp-includes/js/swfupload\";i:8715;s:46:\"/www/btpayments_753/public/wp-includes/js/crop\";i:20004;s:50:\"/www/btpayments_753/public/wp-includes/js/thickbox\";i:31266;s:55:\"/www/btpayments_753/public/wp-includes/js/imgareaselect\";i:49553;s:69:\"/www/btpayments_753/public/wp-includes/js/tinymce/skins/lightgray/img\";i:2856;s:71:\"/www/btpayments_753/public/wp-includes/js/tinymce/skins/lightgray/fonts\";i:155760;s:65:\"/www/btpayments_753/public/wp-includes/js/tinymce/skins/lightgray\";i:210254;s:72:\"/www/btpayments_753/public/wp-includes/js/tinymce/skins/wordpress/images\";i:14207;s:65:\"/www/btpayments_753/public/wp-includes/js/tinymce/skins/wordpress\";i:22831;s:55:\"/www/btpayments_753/public/wp-includes/js/tinymce/skins\";i:233085;s:55:\"/www/btpayments_753/public/wp-includes/js/tinymce/utils\";i:18826;s:63:\"/www/btpayments_753/public/wp-includes/js/tinymce/themes/modern\";i:446221;s:63:\"/www/btpayments_753/public/wp-includes/js/tinymce/themes/inlite\";i:452642;s:56:\"/www/btpayments_753/public/wp-includes/js/tinymce/themes\";i:898863;s:65:\"/www/btpayments_753/public/wp-includes/js/tinymce/plugins/wpemoji\";i:5099;s:67:\"/www/btpayments_753/public/wp-includes/js/tinymce/plugins/wordpress\";i:50628;s:67:\"/www/btpayments_753/public/wp-includes/js/tinymce/plugins/textcolor\";i:16237;s:70:\"/www/btpayments_753/public/wp-includes/js/tinymce/plugins/compat3x/css\";i:8179;s:66:\"/www/btpayments_753/public/wp-includes/js/tinymce/plugins/compat3x\";i:21758;s:62:\"/www/btpayments_753/public/wp-includes/js/tinymce/plugins/link\";i:32949;s:64:\"/www/btpayments_753/public/wp-includes/js/tinymce/plugins/wplink\";i:26566;s:63:\"/www/btpayments_753/public/wp-includes/js/tinymce/plugins/paste\";i:113193;s:63:\"/www/btpayments_753/public/wp-includes/js/tinymce/plugins/lists\";i:97383;s:72:\"/www/btpayments_753/public/wp-includes/js/tinymce/plugins/directionality\";i:2749;s:67:\"/www/btpayments_753/public/wp-includes/js/tinymce/plugins/wpgallery\";i:4806;s:67:\"/www/btpayments_753/public/wp-includes/js/tinymce/plugins/wpdialogs\";i:3761;s:69:\"/www/btpayments_753/public/wp-includes/js/tinymce/plugins/colorpicker\";i:4910;s:70:\"/www/btpayments_753/public/wp-includes/js/tinymce/plugins/wpautoresize\";i:8332;s:63:\"/www/btpayments_753/public/wp-includes/js/tinymce/plugins/image\";i:55874;s:69:\"/www/btpayments_753/public/wp-includes/js/tinymce/plugins/wpeditimage\";i:37711;s:64:\"/www/btpayments_753/public/wp-includes/js/tinymce/plugins/wpview\";i:8985;s:63:\"/www/btpayments_753/public/wp-includes/js/tinymce/plugins/media\";i:57914;s:68:\"/www/btpayments_753/public/wp-includes/js/tinymce/plugins/fullscreen\";i:7779;s:66:\"/www/btpayments_753/public/wp-includes/js/tinymce/plugins/tabfocus\";i:5336;s:65:\"/www/btpayments_753/public/wp-includes/js/tinymce/plugins/charmap\";i:31811;s:60:\"/www/btpayments_753/public/wp-includes/js/tinymce/plugins/hr\";i:1347;s:71:\"/www/btpayments_753/public/wp-includes/js/tinymce/plugins/wptextpattern\";i:11923;s:57:\"/www/btpayments_753/public/wp-includes/js/tinymce/plugins\";i:607051;s:55:\"/www/btpayments_753/public/wp-includes/js/tinymce/langs\";i:15529;s:49:\"/www/btpayments_753/public/wp-includes/js/tinymce\";i:2853756;s:64:\"/www/btpayments_753/public/wp-includes/js/mediaelement/renderers\";i:18880;s:54:\"/www/btpayments_753/public/wp-includes/js/mediaelement\";i:721307;s:51:\"/www/btpayments_753/public/wp-includes/js/jquery/ui\";i:808535;s:48:\"/www/btpayments_753/public/wp-includes/js/jquery\";i:1326271;s:41:\"/www/btpayments_753/public/wp-includes/js\";i:29907446;s:57:\"/www/btpayments_753/public/wp-includes/Text/Diff/Renderer\";i:5528;s:55:\"/www/btpayments_753/public/wp-includes/Text/Diff/Engine\";i:31802;s:48:\"/www/btpayments_753/public/wp-includes/Text/Diff\";i:44136;s:43:\"/www/btpayments_753/public/wp-includes/Text\";i:57049;s:46:\"/www/btpayments_753/public/wp-includes/widgets\";i:158520;s:56:\"/www/btpayments_753/public/wp-includes/interactivity-api\";i:52125;s:47:\"/www/btpayments_753/public/wp-includes/html-api\";i:210846;s:42:\"/www/btpayments_753/public/wp-includes/IXR\";i:33915;s:53:\"/www/btpayments_753/public/wp-includes/images/smilies\";i:10082;s:53:\"/www/btpayments_753/public/wp-includes/images/crystal\";i:15541;s:51:\"/www/btpayments_753/public/wp-includes/images/media\";i:5263;s:45:\"/www/btpayments_753/public/wp-includes/images\";i:102178;s:49:\"/www/btpayments_753/public/wp-includes/php-compat\";i:1253;s:53:\"/www/btpayments_753/public/wp-includes/block-supports\";i:113978;s:48:\"/www/btpayments_753/public/wp-includes/customize\";i:176574;s:51:\"/www/btpayments_753/public/wp-includes/certificates\";i:233231;s:53:\"/www/btpayments_753/public/wp-includes/block-bindings\";i:3610;s:43:\"/www/btpayments_753/public/wp-includes/pomo\";i:57144;s:57:\"/www/btpayments_753/public/wp-includes/sitemaps/providers\";i:17593;s:47:\"/www/btpayments_753/public/wp-includes/sitemaps\";i:47491;s:61:\"/www/btpayments_753/public/wp-includes/SimplePie/Content/Type\";i:8015;s:56:\"/www/btpayments_753/public/wp-includes/SimplePie/Content\";i:8015;s:54:\"/www/btpayments_753/public/wp-includes/SimplePie/Parse\";i:20551;s:53:\"/www/btpayments_753/public/wp-includes/SimplePie/HTTP\";i:11487;s:64:\"/www/btpayments_753/public/wp-includes/SimplePie/XML/Declaration\";i:7098;s:52:\"/www/btpayments_753/public/wp-includes/SimplePie/XML\";i:7098;s:52:\"/www/btpayments_753/public/wp-includes/SimplePie/Net\";i:7493;s:54:\"/www/btpayments_753/public/wp-includes/SimplePie/Cache\";i:39607;s:60:\"/www/btpayments_753/public/wp-includes/SimplePie/Decode/HTML\";i:17241;s:55:\"/www/btpayments_753/public/wp-includes/SimplePie/Decode\";i:17241;s:48:\"/www/btpayments_753/public/wp-includes/SimplePie\";i:458625;s:43:\"/www/btpayments_753/public/wp-includes/l10n\";i:30570;s:44:\"/www/btpayments_753/public/wp-includes/fonts\";i:326255;s:58:\"/www/btpayments_753/public/wp-includes/blocks/post-content\";i:1389;s:51:\"/www/btpayments_753/public/wp-includes/blocks/embed\";i:11320;s:51:\"/www/btpayments_753/public/wp-includes/blocks/video\";i:11523;s:71:\"/www/btpayments_753/public/wp-includes/blocks/query-pagination-previous\";i:1051;s:51:\"/www/btpayments_753/public/wp-includes/blocks/query\";i:13889;s:73:\"/www/btpayments_753/public/wp-includes/blocks/comments-pagination-numbers\";i:1833;s:50:\"/www/btpayments_753/public/wp-includes/blocks/more\";i:3752;s:55:\"/www/btpayments_753/public/wp-includes/blocks/page-list\";i:7663;s:50:\"/www/btpayments_753/public/wp-includes/blocks/list\";i:2157;s:59:\"/www/btpayments_753/public/wp-includes/blocks/template-part\";i:8502;s:51:\"/www/btpayments_753/public/wp-includes/blocks/block\";i:5072;s:50:\"/www/btpayments_753/public/wp-includes/blocks/file\";i:11254;s:62:\"/www/btpayments_753/public/wp-includes/blocks/term-description\";i:1751;s:58:\"/www/btpayments_753/public/wp-includes/blocks/latest-posts\";i:11254;s:63:\"/www/btpayments_753/public/wp-includes/blocks/comment-edit-link\";i:1213;s:64:\"/www/btpayments_753/public/wp-includes/blocks/post-comments-form\";i:9575;s:64:\"/www/btpayments_753/public/wp-includes/blocks/comment-reply-link\";i:1001;s:55:\"/www/btpayments_753/public/wp-includes/blocks/read-more\";i:2526;s:55:\"/www/btpayments_753/public/wp-includes/blocks/home-link\";i:1130;s:52:\"/www/btpayments_753/public/wp-includes/blocks/column\";i:1597;s:53:\"/www/btpayments_753/public/wp-includes/blocks/missing\";i:617;s:62:\"/www/btpayments_753/public/wp-includes/blocks/query-no-results\";i:899;s:56:\"/www/btpayments_753/public/wp-includes/blocks/media-text\";i:13788;s:52:\"/www/btpayments_753/public/wp-includes/blocks/button\";i:23227;s:59:\"/www/btpayments_753/public/wp-includes/blocks/post-template\";i:8336;s:55:\"/www/btpayments_753/public/wp-includes/blocks/footnotes\";i:2642;s:67:\"/www/btpayments_753/public/wp-includes/blocks/post-author-biography\";i:971;s:55:\"/www/btpayments_753/public/wp-includes/blocks/paragraph\";i:6857;s:62:\"/www/btpayments_753/public/wp-includes/blocks/post-author-name\";i:1118;s:65:\"/www/btpayments_753/public/wp-includes/blocks/post-featured-image\";i:28162;s:58:\"/www/btpayments_753/public/wp-includes/blocks/comment-date\";i:1112;s:54:\"/www/btpayments_753/public/wp-includes/blocks/comments\";i:28882;s:56:\"/www/btpayments_753/public/wp-includes/blocks/post-terms\";i:1715;s:65:\"/www/btpayments_753/public/wp-includes/blocks/comments-pagination\";i:8628;s:52:\"/www/btpayments_753/public/wp-includes/blocks/search\";i:18972;s:60:\"/www/btpayments_753/public/wp-includes/blocks/page-list-item\";i:1109;s:55:\"/www/btpayments_753/public/wp-includes/blocks/tag-cloud\";i:3500;s:54:\"/www/btpayments_753/public/wp-includes/blocks/freeform\";i:41824;s:53:\"/www/btpayments_753/public/wp-includes/blocks/details\";i:2067;s:55:\"/www/btpayments_753/public/wp-includes/blocks/site-logo\";i:16227;s:58:\"/www/btpayments_753/public/wp-includes/blocks/preformatted\";i:1696;s:64:\"/www/btpayments_753/public/wp-includes/blocks/navigation-submenu\";i:5842;s:51:\"/www/btpayments_753/public/wp-includes/blocks/quote\";i:6522;s:51:\"/www/btpayments_753/public/wp-includes/blocks/verse\";i:1860;s:59:\"/www/btpayments_753/public/wp-includes/blocks/legacy-widget\";i:556;s:49:\"/www/btpayments_753/public/wp-includes/blocks/rss\";i:5077;s:55:\"/www/btpayments_753/public/wp-includes/blocks/pullquote\";i:8387;s:51:\"/www/btpayments_753/public/wp-includes/blocks/table\";i:27288;s:70:\"/www/btpayments_753/public/wp-includes/blocks/query-pagination-numbers\";i:1942;s:51:\"/www/btpayments_753/public/wp-includes/blocks/audio\";i:3564;s:58:\"/www/btpayments_753/public/wp-includes/blocks/post-excerpt\";i:2925;s:53:\"/www/btpayments_753/public/wp-includes/blocks/gallery\";i:79899;s:58:\"/www/btpayments_753/public/wp-includes/blocks/site-tagline\";i:1570;s:55:\"/www/btpayments_753/public/wp-includes/blocks/post-date\";i:1377;s:60:\"/www/btpayments_753/public/wp-includes/blocks/comments-title\";i:1701;s:53:\"/www/btpayments_753/public/wp-includes/blocks/heading\";i:5710;s:61:\"/www/btpayments_753/public/wp-includes/blocks/comment-content\";i:1369;s:52:\"/www/btpayments_753/public/wp-includes/blocks/spacer\";i:4737;s:51:\"/www/btpayments_753/public/wp-includes/blocks/cover\";i:85204;s:51:\"/www/btpayments_753/public/wp-includes/blocks/group\";i:13249;s:58:\"/www/btpayments_753/public/wp-includes/blocks/widget-group\";i:374;s:53:\"/www/btpayments_753/public/wp-includes/blocks/pattern\";i:411;s:58:\"/www/btpayments_753/public/wp-includes/blocks/social-links\";i:54790;s:55:\"/www/btpayments_753/public/wp-includes/blocks/shortcode\";i:3192;s:54:\"/www/btpayments_753/public/wp-includes/blocks/archives\";i:1725;s:67:\"/www/btpayments_753/public/wp-includes/blocks/query-pagination-next\";i:1039;s:70:\"/www/btpayments_753/public/wp-includes/blocks/comments-pagination-next\";i:1011;s:57:\"/www/btpayments_753/public/wp-includes/blocks/query-title\";i:1392;s:50:\"/www/btpayments_753/public/wp-includes/blocks/html\";i:3708;s:56:\"/www/btpayments_753/public/wp-includes/blocks/site-title\";i:2201;s:57:\"/www/btpayments_753/public/wp-includes/blocks/social-link\";i:2344;s:54:\"/www/btpayments_753/public/wp-includes/blocks/nextpage\";i:3039;s:56:\"/www/btpayments_753/public/wp-includes/blocks/navigation\";i:133018;s:52:\"/www/btpayments_753/public/wp-includes/blocks/avatar\";i:2296;s:55:\"/www/btpayments_753/public/wp-includes/blocks/list-item\";i:1099;s:50:\"/www/btpayments_753/public/wp-includes/blocks/code\";i:2638;s:62:\"/www/btpayments_753/public/wp-includes/blocks/query-pagination\";i:9403;s:58:\"/www/btpayments_753/public/wp-includes/blocks/text-columns\";i:3034;s:57:\"/www/btpayments_753/public/wp-includes/blocks/post-author\";i:2895;s:62:\"/www/btpayments_753/public/wp-includes/blocks/comment-template\";i:2910;s:56:\"/www/btpayments_753/public/wp-includes/blocks/categories\";i:2825;s:54:\"/www/btpayments_753/public/wp-includes/blocks/calendar\";i:3804;s:51:\"/www/btpayments_753/public/wp-includes/blocks/image\";i:67389;s:56:\"/www/btpayments_753/public/wp-includes/blocks/post-title\";i:1823;s:66:\"/www/btpayments_753/public/wp-includes/blocks/post-navigation-link\";i:4010;s:55:\"/www/btpayments_753/public/wp-includes/blocks/separator\";i:5280;s:54:\"/www/btpayments_753/public/wp-includes/blocks/loginout\";i:1026;s:61:\"/www/btpayments_753/public/wp-includes/blocks/latest-comments\";i:6657;s:61:\"/www/btpayments_753/public/wp-includes/blocks/navigation-link\";i:12266;s:65:\"/www/btpayments_753/public/wp-includes/blocks/comment-author-name\";i:1192;s:53:\"/www/btpayments_753/public/wp-includes/blocks/buttons\";i:11183;s:74:\"/www/btpayments_753/public/wp-includes/blocks/comments-pagination-previous\";i:1023;s:53:\"/www/btpayments_753/public/wp-includes/blocks/columns\";i:9193;s:45:\"/www/btpayments_753/public/wp-includes/blocks\";i:1501416;s:45:\"/www/btpayments_753/public/wp-includes/assets\";i:26062;s:51:\"/www/btpayments_753/public/wp-includes/style-engine\";i:43906;s:60:\"/www/btpayments_753/public/wp-includes/Requests/src/Response\";i:3101;s:57:\"/www/btpayments_753/public/wp-includes/Requests/src/Proxy\";i:4217;s:61:\"/www/btpayments_753/public/wp-includes/Requests/src/Transport\";i:35060;s:59:\"/www/btpayments_753/public/wp-includes/Requests/src/Utility\";i:7176;s:56:\"/www/btpayments_753/public/wp-includes/Requests/src/Auth\";i:2541;s:66:\"/www/btpayments_753/public/wp-includes/Requests/src/Exception/Http\";i:16715;s:71:\"/www/btpayments_753/public/wp-includes/Requests/src/Exception/Transport\";i:1397;s:61:\"/www/btpayments_753/public/wp-includes/Requests/src/Exception\";i:22464;s:58:\"/www/btpayments_753/public/wp-includes/Requests/src/Cookie\";i:4363;s:51:\"/www/btpayments_753/public/wp-includes/Requests/src\";i:214155;s:55:\"/www/btpayments_753/public/wp-includes/Requests/library\";i:261;s:47:\"/www/btpayments_753/public/wp-includes/Requests\";i:214416;s:57:\"/www/btpayments_753/public/wp-includes/rest-api/endpoints\";i:846393;s:54:\"/www/btpayments_753/public/wp-includes/rest-api/fields\";i:22510;s:54:\"/www/btpayments_753/public/wp-includes/rest-api/search\";i:16749;s:47:\"/www/btpayments_753/public/wp-includes/rest-api\";i:975239;s:55:\"/www/btpayments_753/public/wp-includes/css/dist/widgets\";i:23656;s:63:\"/www/btpayments_753/public/wp-includes/css/dist/reusable-blocks\";i:2206;s:54:\"/www/btpayments_753/public/wp-includes/css/dist/editor\";i:129032;s:61:\"/www/btpayments_753/public/wp-includes/css/dist/block-library\";i:822550;s:57:\"/www/btpayments_753/public/wp-includes/css/dist/edit-site\";i:465060;s:51:\"/www/btpayments_753/public/wp-includes/css/dist/nux\";i:11540;s:60:\"/www/btpayments_753/public/wp-includes/css/dist/block-editor\";i:613729;s:56:\"/www/btpayments_753/public/wp-includes/css/dist/patterns\";i:5546;s:63:\"/www/btpayments_753/public/wp-includes/css/dist/block-directory\";i:15076;s:65:\"/www/btpayments_753/public/wp-includes/css/dist/customize-widgets\";i:23540;s:59:\"/www/btpayments_753/public/wp-includes/css/dist/preferences\";i:8370;s:56:\"/www/btpayments_753/public/wp-includes/css/dist/commands\";i:12768;s:58:\"/www/btpayments_753/public/wp-includes/css/dist/components\";i:354537;s:62:\"/www/btpayments_753/public/wp-includes/css/dist/format-library\";i:5472;s:60:\"/www/btpayments_753/public/wp-includes/css/dist/edit-widgets\";i:97016;s:57:\"/www/btpayments_753/public/wp-includes/css/dist/edit-post\";i:150390;s:68:\"/www/btpayments_753/public/wp-includes/css/dist/list-reusable-blocks\";i:17844;s:47:\"/www/btpayments_753/public/wp-includes/css/dist\";i:2758332;s:42:\"/www/btpayments_753/public/wp-includes/css\";i:3406025;s:51:\"/www/btpayments_753/public/wp-includes/theme-compat\";i:15656;s:42:\"/www/btpayments_753/public/wp-includes/ID3\";i:1160011;s:38:\"/www/btpayments_753/public/wp-includes\";i:48108203;s:44:\"/www/btpayments_753/public/wp-admin/includes\";i:3053274;s:43:\"/www/btpayments_753/public/wp-admin/network\";i:125258;s:46:\"/www/btpayments_753/public/wp-admin/js/widgets\";i:139380;s:38:\"/www/btpayments_753/public/wp-admin/js\";i:1966153;s:41:\"/www/btpayments_753/public/wp-admin/maint\";i:7592;s:40:\"/www/btpayments_753/public/wp-admin/user\";i:3418;s:42:\"/www/btpayments_753/public/wp-admin/images\";i:426139;s:56:\"/www/btpayments_753/public/wp-admin/css/colors/ectoplasm\";i:77742;s:52:\"/www/btpayments_753/public/wp-admin/css/colors/light\";i:78474;s:52:\"/www/btpayments_753/public/wp-admin/css/colors/ocean\";i:75229;s:53:\"/www/btpayments_753/public/wp-admin/css/colors/coffee\";i:75892;s:55:\"/www/btpayments_753/public/wp-admin/css/colors/midnight\";i:78486;s:53:\"/www/btpayments_753/public/wp-admin/css/colors/modern\";i:77989;s:51:\"/www/btpayments_753/public/wp-admin/css/colors/blue\";i:77778;s:54:\"/www/btpayments_753/public/wp-admin/css/colors/sunrise\";i:78407;s:46:\"/www/btpayments_753/public/wp-admin/css/colors\";i:643556;s:39:\"/www/btpayments_753/public/wp-admin/css\";i:2533635;s:35:\"/www/btpayments_753/public/wp-admin\";i:9043778;s:26:\"/www/btpayments_753/public\";i:57484323;s:80:\"/www/btpayments_753/public/wp-content/themes/hello-elementor/includes/customizer\";i:4816;s:78:\"/www/btpayments_753/public/wp-content/themes/hello-elementor/includes/settings\";i:30702;s:69:\"/www/btpayments_753/public/wp-content/themes/hello-elementor/includes\";i:54765;s:75:\"/www/btpayments_753/public/wp-content/themes/hello-elementor/template-parts\";i:11608;s:70:\"/www/btpayments_753/public/wp-content/themes/hello-elementor/assets/js\";i:67974;s:74:\"/www/btpayments_753/public/wp-content/themes/hello-elementor/assets/images\";i:39000;s:67:\"/www/btpayments_753/public/wp-content/themes/hello-elementor/assets\";i:106974;s:60:\"/www/btpayments_753/public/wp-content/themes/hello-elementor\";i:357564;s:59:\"/www/btpayments_753/public/wp-content/themes/kava/languages\";i:185602;s:56:\"/www/btpayments_753/public/wp-content/themes/kava/config\";i:3951;s:99:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/blog-layouts/assets/scss/blog-layouts\";i:81415;s:86:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/blog-layouts/assets/scss\";i:82100;s:85:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/blog-layouts/assets/css\";i:155440;s:81:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/blog-layouts/assets\";i:237540;s:94:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/blog-layouts/template-parts/grid\";i:16756;s:97:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/blog-layouts/template-parts/default\";i:12215;s:98:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/blog-layouts/template-parts/creative\";i:14002;s:106:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/blog-layouts/template-parts/vertical-justify\";i:17412;s:97:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/blog-layouts/template-parts/masonry\";i:15348;s:89:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/blog-layouts/template-parts\";i:75733;s:74:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/blog-layouts\";i:320248;s:74:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/post-formats\";i:15865;s:85:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/woo-page-title/template\";i:467;s:76:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/woo-page-title\";i:1656;s:84:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/woo/assets/css/dynamic\";i:15548;s:76:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/woo/assets/css\";i:227977;s:75:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/woo/assets/js\";i:511;s:83:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/woo/assets/scss/pages\";i:15950;s:86:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/woo/assets/scss/category\";i:607;s:85:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/woo/assets/scss/layouts\";i:578;s:88:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/woo/assets/scss/components\";i:15916;s:84:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/woo/assets/scss/mixins\";i:10969;s:85:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/woo/assets/scss/widgets\";i:10979;s:92:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/woo/assets/scss/single-product\";i:5670;s:85:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/woo/assets/scss/plugins\";i:2143;s:85:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/woo/assets/scss/product\";i:808;s:77:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/woo/assets/scss\";i:65318;s:72:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/woo/assets\";i:293806;s:74:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/woo/includes\";i:15403;s:65:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/woo\";i:313349;s:72:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/crocoblock\";i:1702;s:85:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/woo-breadcrumbs/classes\";i:2928;s:77:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/woo-breadcrumbs\";i:4479;s:88:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/breadcrumbs/template-parts\";i:996;s:73:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules/breadcrumbs\";i:6750;s:61:\"/www/btpayments_753/public/wp-content/themes/kava/inc/modules\";i:666379;s:61:\"/www/btpayments_753/public/wp-content/themes/kava/inc/classes\";i:22186;s:53:\"/www/btpayments_753/public/wp-content/themes/kava/inc\";i:787468;s:91:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/interface-builder/views\";i:9532;s:98:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/interface-builder/inc/controls\";i:60729;s:89:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/interface-builder/inc\";i:65724;s:108:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/interface-builder/assets/scss/components\";i:6164;s:106:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/interface-builder/assets/scss/controls\";i:25120;s:97:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/interface-builder/assets/scss\";i:41568;s:104:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/interface-builder/assets/lib/select2\";i:81802;s:108:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/interface-builder/assets/lib/colorpicker\";i:7016;s:107:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/interface-builder/assets/lib/iconpicker\";i:67311;s:96:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/interface-builder/assets/lib\";i:156129;s:95:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/interface-builder/assets/js\";i:50610;s:96:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/interface-builder/assets/css\";i:49758;s:92:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/interface-builder/assets\";i:298065;s:85:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/interface-builder\";i:387786;s:84:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/vue-ui/assets/js\";i:507598;s:100:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/vue-ui/assets/src/scss/variables\";i:752;s:97:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/vue-ui/assets/src/scss/mixins\";i:494;s:101:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/vue-ui/assets/src/scss/components\";i:15201;s:97:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/vue-ui/assets/src/scss/common\";i:3792;s:90:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/vue-ui/assets/src/scss\";i:20902;s:95:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/vue-ui/assets/src/js/mixins\";i:2214;s:106:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/vue-ui/assets/src/js/components/layout\";i:13138;s:104:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/vue-ui/assets/src/js/components/form\";i:28781;s:99:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/vue-ui/assets/src/js/components\";i:41919;s:94:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/vue-ui/assets/src/js/utils\";i:384;s:88:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/vue-ui/assets/src/js\";i:46611;s:85:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/vue-ui/assets/src\";i:67513;s:81:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/vue-ui/assets\";i:575111;s:85:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/vue-ui/components\";i:21188;s:74:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/vue-ui\";i:599295;s:79:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/breadcrumbs\";i:40969;s:91:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/customizer/assets/fonts\";i:603214;s:85:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/customizer/assets\";i:603214;s:78:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/customizer\";i:637658;s:90:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/dynamic-css/assets/min\";i:245;s:86:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/dynamic-css/assets\";i:672;s:83:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/dynamic-css/inc\";i:26068;s:79:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/dynamic-css\";i:39671;s:77:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/post-meta\";i:14856;s:81:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules/fonts-manager\";i:7235;s:67:\"/www/btpayments_753/public/wp-content/themes/kava/framework/modules\";i:1727470;s:59:\"/www/btpayments_753/public/wp-content/themes/kava/framework\";i:1733069;s:65:\"/www/btpayments_753/public/wp-content/themes/kava/admin-templates\";i:6021;s:68:\"/www/btpayments_753/public/wp-content/themes/kava/assets/css/dynamic\";i:35922;s:60:\"/www/btpayments_753/public/wp-content/themes/kava/assets/css\";i:40011;s:59:\"/www/btpayments_753/public/wp-content/themes/kava/assets/js\";i:6965;s:67:\"/www/btpayments_753/public/wp-content/themes/kava/assets/lib/swiper\";i:142468;s:75:\"/www/btpayments_753/public/wp-content/themes/kava/assets/lib/magnific-popup\";i:25520;s:78:\"/www/btpayments_753/public/wp-content/themes/kava/assets/lib/font-awesome/font\";i:1769093;s:73:\"/www/btpayments_753/public/wp-content/themes/kava/assets/lib/font-awesome\";i:1800081;s:60:\"/www/btpayments_753/public/wp-content/themes/kava/assets/lib\";i:1968069;s:63:\"/www/btpayments_753/public/wp-content/themes/kava/assets/images\";i:8103;s:66:\"/www/btpayments_753/public/wp-content/themes/kava/assets/sass/grid\";i:7185;s:67:\"/www/btpayments_753/public/wp-content/themes/kava/assets/sass/media\";i:2460;s:68:\"/www/btpayments_753/public/wp-content/themes/kava/assets/sass/mixins\";i:3284;s:70:\"/www/btpayments_753/public/wp-content/themes/kava/assets/sass/elements\";i:3154;s:69:\"/www/btpayments_753/public/wp-content/themes/kava/assets/sass/modules\";i:3945;s:76:\"/www/btpayments_753/public/wp-content/themes/kava/assets/sass/variables-site\";i:1233;s:72:\"/www/btpayments_753/public/wp-content/themes/kava/assets/sass/navigation\";i:10835;s:67:\"/www/btpayments_753/public/wp-content/themes/kava/assets/sass/forms\";i:2001;s:72:\"/www/btpayments_753/public/wp-content/themes/kava/assets/sass/typography\";i:991;s:76:\"/www/btpayments_753/public/wp-content/themes/kava/assets/sass/site/secondary\";i:2610;s:74:\"/www/btpayments_753/public/wp-content/themes/kava/assets/sass/site/primary\";i:18761;s:66:\"/www/btpayments_753/public/wp-content/themes/kava/assets/sass/site\";i:23252;s:69:\"/www/btpayments_753/public/wp-content/themes/kava/assets/sass/plugins\";i:4514;s:61:\"/www/btpayments_753/public/wp-content/themes/kava/assets/sass\";i:70783;s:56:\"/www/btpayments_753/public/wp-content/themes/kava/assets\";i:2093931;s:64:\"/www/btpayments_753/public/wp-content/themes/kava/post-templates\";i:11687;s:84:\"/www/btpayments_753/public/wp-content/themes/kava/template-parts/single-post/headers\";i:13810;s:76:\"/www/btpayments_753/public/wp-content/themes/kava/template-parts/single-post\";i:19318;s:64:\"/www/btpayments_753/public/wp-content/themes/kava/template-parts\";i:32052;s:64:\"/www/btpayments_753/public/wp-content/themes/kava/page-templates\";i:666;s:49:\"/www/btpayments_753/public/wp-content/themes/kava\";i:5338268;s:85:\"/www/btpayments_753/public/wp-content/themes/calcue-child/assets/demo-content/default\";i:1519142;s:77:\"/www/btpayments_753/public/wp-content/themes/calcue-child/assets/demo-content\";i:1519142;s:64:\"/www/btpayments_753/public/wp-content/themes/calcue-child/assets\";i:1519142;s:69:\"/www/btpayments_753/public/wp-content/themes/calcue-child/inc/classes\";i:122621;s:61:\"/www/btpayments_753/public/wp-content/themes/calcue-child/inc\";i:122621;s:68:\"/www/btpayments_753/public/wp-content/themes/calcue-child/structures\";i:1127;s:72:\"/www/btpayments_753/public/wp-content/themes/calcue-child/document-types\";i:440;s:57:\"/www/btpayments_753/public/wp-content/themes/calcue-child\";i:2241929;s:44:\"/www/btpayments_753/public/wp-content/themes\";i:7937789;s:95:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/templates/jet-blog-video-playlist/global\";i:4032;s:88:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/templates/jet-blog-video-playlist\";i:4032;s:92:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/templates/jet-blog-text-ticker/global\";i:1313;s:85:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/templates/jet-blog-text-ticker\";i:1313;s:97:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/templates/jet-blog-posts-navigation/render\";i:918;s:95:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/templates/jet-blog-posts-navigation/edit\";i:580;s:90:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/templates/jet-blog-posts-navigation\";i:1498;s:94:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/templates/jet-blog-smart-listing/global\";i:4766;s:87:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/templates/jet-blog-smart-listing\";i:4766;s:80:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/templates/admin-templates\";i:5622;s:97:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/templates/jet-blog-posts-pagination/global\";i:769;s:90:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/templates/jet-blog-posts-pagination\";i:769;s:92:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/templates/jet-blog-smart-tiles/global\";i:2788;s:85:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/templates/jet-blog-smart-tiles\";i:2788;s:64:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/templates\";i:20788;s:70:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/addons\";i:385907;s:88:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/settings/subpage-modules\";i:5090;s:72:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/settings\";i:7192;s:82:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/rest-api/endpoints\";i:7640;s:72:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/rest-api\";i:10799;s:68:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/base\";i:32167;s:82:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/db-updater\";i:7076;s:105:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/jet-dashboard/inc/modules/license\";i:3985;s:105:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/jet-dashboard/inc/modules/welcome\";i:5073;s:106:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/jet-dashboard/inc/modules/settings\";i:4138;s:104:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/jet-dashboard/inc/modules/upsale\";i:5661;s:97:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/jet-dashboard/inc/modules\";i:36680;s:110:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/jet-dashboard/inc/compatibility/themes\";i:564;s:103:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/jet-dashboard/inc/compatibility\";i:3525;s:89:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/jet-dashboard/inc\";i:122168;s:98:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/jet-dashboard/views/upsale\";i:5444;s:99:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/jet-dashboard/views/welcome\";i:21915;s:99:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/jet-dashboard/views/license\";i:24904;s:98:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/jet-dashboard/views/common\";i:12524;s:100:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/jet-dashboard/views/settings\";i:1641;s:91:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/jet-dashboard/views\";i:72576;s:95:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/jet-dashboard/assets/js\";i:62979;s:96:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/jet-dashboard/assets/css\";i:136351;s:99:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/jet-dashboard/assets/images\";i:23090;s:105:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/jet-dashboard/assets/scss/modules\";i:25365;s:104:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/jet-dashboard/assets/scss/mixins\";i:2575;s:97:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/jet-dashboard/assets/scss\";i:52783;s:92:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/jet-dashboard/assets\";i:281351;s:85:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/jet-dashboard\";i:534225;s:88:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/vue-ui/assets/js\";i:511839;s:105:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/vue-ui/assets/src/scss/components\";i:16443;s:104:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/vue-ui/assets/src/scss/variables\";i:752;s:101:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/vue-ui/assets/src/scss/common\";i:3792;s:101:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/vue-ui/assets/src/scss/mixins\";i:494;s:94:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/vue-ui/assets/src/scss\";i:22177;s:99:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/vue-ui/assets/src/js/mixins\";i:2214;s:98:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/vue-ui/assets/src/js/utils\";i:384;s:108:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/vue-ui/assets/src/js/components/form\";i:28781;s:110:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/vue-ui/assets/src/js/components/layout\";i:16357;s:103:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/vue-ui/assets/src/js/components\";i:45138;s:92:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/vue-ui/assets/src/js\";i:49933;s:89:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/vue-ui/assets/src\";i:72110;s:85:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/vue-ui/assets\";i:583949;s:89:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/vue-ui/components\";i:23318;s:78:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules/vue-ui\";i:610281;s:71:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/modules\";i:1157519;s:79:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/controls/groups\";i:9479;s:72:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes/controls\";i:9479;s:63:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/includes\";i:1667040;s:64:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/languages\";i:221525;s:71:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/assets/css/fonts\";i:23865;s:65:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/assets/css\";i:153135;s:74:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/assets/js/lib/slick\";i:42863;s:68:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/assets/js/lib\";i:42863;s:64:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/assets/js\";i:82915;s:68:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/assets/images\";i:25326;s:73:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/assets/scss/addons\";i:37199;s:71:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/assets/scss/base\";i:4181;s:66:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/assets/scss\";i:51510;s:61:\"/www/btpayments_753/public/wp-content/plugins/jet-blog/assets\";i:312886;s:54:\"/www/btpayments_753/public/wp-content/plugins/jet-blog\";i:2249939;s:89:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/elementor/controls/groups\";i:3017;s:82:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/elementor/controls\";i:3017;s:88:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/elementor/document-types\";i:1569;s:88:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/elementor/widgets/legacy\";i:221828;s:81:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/elementor/widgets\";i:429298;s:97:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/elementor/assets/public/js/legacy\";i:11348;s:90:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/elementor/assets/public/js\";i:22354;s:87:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/elementor/assets/public\";i:22354;s:91:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/elementor/assets/editor/css\";i:4701;s:97:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/elementor/assets/editor/js/legacy\";i:2110;s:90:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/elementor/assets/editor/js\";i:9930;s:92:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/elementor/assets/editor/scss\";i:4743;s:87:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/elementor/assets/editor\";i:19374;s:80:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/elementor/assets\";i:41728;s:73:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/elementor\";i:488801;s:77:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/render/legacy\";i:50307;s:85:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/render/walkers/legacy\";i:26541;s:78:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/render/walkers\";i:67083;s:85:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/render/render-modules\";i:37463;s:70:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/render\";i:210463;s:88:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/settings/options-modules\";i:70440;s:88:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/settings/subpage-modules\";i:9950;s:72:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/settings\";i:150808;s:82:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/rest-api/endpoints\";i:8016;s:72:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/rest-api\";i:11361;s:94:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/dynamic-css/assets/min\";i:245;s:90:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/dynamic-css/assets\";i:672;s:87:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/dynamic-css/inc\";i:26068;s:83:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/dynamic-css\";i:39672;s:105:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/jet-dashboard/assets/scss/modules\";i:25365;s:104:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/jet-dashboard/assets/scss/mixins\";i:2575;s:97:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/jet-dashboard/assets/scss\";i:46635;s:96:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/jet-dashboard/assets/css\";i:136351;s:99:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/jet-dashboard/assets/images\";i:23090;s:95:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/jet-dashboard/assets/js\";i:62979;s:92:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/jet-dashboard/assets\";i:269055;s:110:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/jet-dashboard/inc/compatibility/themes\";i:564;s:103:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/jet-dashboard/inc/compatibility\";i:3525;s:105:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/jet-dashboard/inc/modules/license\";i:3985;s:105:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/jet-dashboard/inc/modules/welcome\";i:5073;s:106:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/jet-dashboard/inc/modules/settings\";i:4138;s:104:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/jet-dashboard/inc/modules/upsale\";i:5661;s:97:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/jet-dashboard/inc/modules\";i:36680;s:89:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/jet-dashboard/inc\";i:116020;s:98:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/jet-dashboard/views/common\";i:12524;s:98:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/jet-dashboard/views/upsale\";i:5444;s:100:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/jet-dashboard/views/settings\";i:1641;s:99:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/jet-dashboard/views/welcome\";i:21915;s:99:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/jet-dashboard/views/license\";i:24904;s:91:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/jet-dashboard/views\";i:66428;s:85:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/jet-dashboard\";i:509578;s:95:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/customizer/assets/fonts\";i:556481;s:89:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/customizer/assets\";i:556481;s:82:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/customizer\";i:590925;s:88:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/vue-ui/assets/js\";i:769884;s:105:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/vue-ui/assets/src/scss/components\";i:24884;s:101:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/vue-ui/assets/src/scss/mixins\";i:852;s:101:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/vue-ui/assets/src/scss/common\";i:3879;s:104:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/vue-ui/assets/src/scss/variables\";i:788;s:94:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/vue-ui/assets/src/scss\";i:31224;s:99:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/vue-ui/assets/src/js/mixins\";i:2214;s:98:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/vue-ui/assets/src/js/utils\";i:384;s:110:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/vue-ui/assets/src/js/components/layout\";i:16473;s:108:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/vue-ui/assets/src/js/components/form\";i:44215;s:103:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/vue-ui/assets/src/js/components\";i:60688;s:92:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/vue-ui/assets/src/js\";i:65785;s:89:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/vue-ui/assets/src\";i:97009;s:85:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/vue-ui/assets\";i:866893;s:89:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/vue-ui/components\";i:34369;s:78:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/vue-ui\";i:908679;s:82:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/db-updater\";i:7076;s:85:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/fonts-manager\";i:7235;s:108:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/jet-elementor-extension/inc/controls\";i:1302;s:99:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/jet-elementor-extension/inc\";i:6677;s:105:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/jet-elementor-extension/assets/js\";i:6664;s:102:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/jet-elementor-extension/assets\";i:6664;s:95:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules/jet-elementor-extension\";i:16380;s:71:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/modules\";i:2093682;s:77:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/blocks/blocks\";i:76058;s:70:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/blocks\";i:79577;s:67:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes/lib\";i:210134;s:63:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/includes\";i:3310141;s:64:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/languages\";i:177915;s:92:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/assets/public/lib/font-awesome/_fonts\";i:1085661;s:88:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/assets/public/lib/font-awesome/js\";i:52707;s:89:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/assets/public/lib/font-awesome/css\";i:338421;s:95:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/assets/public/lib/font-awesome/migration\";i:41049;s:94:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/assets/public/lib/font-awesome/webfonts\";i:2792547;s:85:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/assets/public/lib/font-awesome\";i:4310385;s:76:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/assets/public/lib/vue\";i:435816;s:72:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/assets/public/lib\";i:4746201;s:72:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/assets/public/css\";i:85237;s:78:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/assets/public/js/legacy\";i:52987;s:71:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/assets/public/js\";i:110511;s:68:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/assets/public\";i:4948097;s:70:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/assets/admin/js\";i:101126;s:89:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/assets/admin/images/block-previews\";i:43397;s:74:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/assets/admin/images\";i:78358;s:71:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/assets/admin/css\";i:8536;s:67:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/assets/admin\";i:194168;s:72:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/assets/editor/css\";i:5016;s:68:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/assets/editor\";i:5016;s:67:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/assets/fonts\";i:556481;s:61:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/assets\";i:5709910;s:89:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/astra/assets/js\";i:168;s:90:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/astra/assets/css\";i:564;s:86:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/astra/assets\";i:732;s:79:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/astra\";i:1476;s:95:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/zerif-lite/assets/css\";i:40;s:91:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/zerif-lite/assets\";i:40;s:84:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/zerif-lite\";i:459;s:91:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/betheme/assets/js\";i:229;s:88:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/betheme/assets\";i:229;s:81:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/betheme\";i:1008;s:90:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/phlox/assets/css\";i:48;s:86:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/phlox/assets\";i:48;s:79:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/phlox\";i:1648;s:90:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/zerif/assets/css\";i:40;s:86:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/zerif/assets\";i:40;s:79:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/zerif\";i:439;s:100:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/hello-elementor/assets/css\";i:117;s:96:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/hello-elementor/assets\";i:6265;s:89:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/hello-elementor\";i:6695;s:91:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/hestia/assets/css\";i:67;s:87:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/hestia/assets\";i:67;s:80:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/hestia\";i:470;s:94:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/phlox-pro/assets/css\";i:48;s:90:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/phlox-pro/assets\";i:48;s:83:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/phlox-pro\";i:1680;s:92:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/oceanwp/assets/css\";i:447;s:88:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/oceanwp/assets\";i:447;s:81:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/oceanwp\";i:1759;s:99:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/twentyseventeen/assets/js\";i:172;s:96:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/twentyseventeen/assets\";i:172;s:89:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/twentyseventeen\";i:631;s:94:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/storefront/assets/js\";i:253;s:91:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/storefront/assets\";i:253;s:84:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/storefront\";i:692;s:97:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/generatepress/assets/js\";i:172;s:94:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/generatepress/assets\";i:172;s:87:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/generatepress\";i:625;s:97:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/twentysixteen/assets/js\";i:172;s:94:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/twentysixteen/assets\";i:172;s:87:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/twentysixteen\";i:623;s:90:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/enfold/assets/js\";i:269;s:91:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/enfold/assets/css\";i:468;s:87:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/enfold/assets\";i:737;s:80:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/enfold\";i:1489;s:90:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/Avada/assets/css\";i:1147;s:89:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/Avada/assets/js\";i:211;s:86:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/Avada/assets\";i:1358;s:79:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes/Avada\";i:4018;s:73:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/themes\";i:33956;s:94:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/plugins/better-font-awesome\";i:413;s:83:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/plugins/polylang\";i:545;s:92:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/plugins/epic-news-element\";i:335;s:109:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/plugins/header-footer-elementor/assets/css\";i:64;s:105:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/plugins/header-footer-elementor/assets\";i:64;s:98:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/plugins/header-footer-elementor\";i:495;s:86:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/plugins/woocommerce\";i:610;s:87:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/plugins/polylang-pro\";i:561;s:94:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/plugins/the-events-calendar\";i:1536;s:101:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/plugins/sitepress-multilingual-cms\";i:626;s:83:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/plugins/jet-menu\";i:386;s:91:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/plugins/jet-form-builder\";i:361;s:74:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration/plugins\";i:14064;s:66:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/integration\";i:57657;s:65:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/dummy-data\";i:237845;s:85:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/templates/public/vue-templates\";i:6952;s:71:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/templates/public\";i:7712;s:89:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/templates/admin/settings-templates\";i:116536;s:77:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/templates/admin/legacy\";i:9033;s:70:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/templates/admin\";i:167322;s:64:\"/www/btpayments_753/public/wp-content/plugins/jet-menu/templates\";i:181916;s:54:\"/www/btpayments_753/public/wp-content/plugins/jet-menu\";i:9698041;s:64:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/languages\";i:94875;s:79:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/controls/groups\";i:9346;s:72:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/controls\";i:9346;s:99:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/jet-dashboard/assets/images\";i:23090;s:104:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/jet-dashboard/assets/scss/mixins\";i:2575;s:105:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/jet-dashboard/assets/scss/modules\";i:25365;s:97:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/jet-dashboard/assets/scss\";i:52783;s:95:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/jet-dashboard/assets/js\";i:62979;s:96:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/jet-dashboard/assets/css\";i:136351;s:92:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/jet-dashboard/assets\";i:281351;s:100:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/jet-dashboard/views/settings\";i:1641;s:98:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/jet-dashboard/views/upsale\";i:5444;s:99:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/jet-dashboard/views/license\";i:24904;s:99:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/jet-dashboard/views/welcome\";i:21915;s:98:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/jet-dashboard/views/common\";i:12524;s:91:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/jet-dashboard/views\";i:72576;s:106:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/jet-dashboard/inc/modules/settings\";i:4138;s:104:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/jet-dashboard/inc/modules/upsale\";i:5661;s:105:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/jet-dashboard/inc/modules/license\";i:3985;s:105:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/jet-dashboard/inc/modules/welcome\";i:5073;s:97:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/jet-dashboard/inc/modules\";i:36680;s:110:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/jet-dashboard/inc/compatibility/themes\";i:564;s:103:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/jet-dashboard/inc/compatibility\";i:3525;s:89:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/jet-dashboard/inc\";i:124874;s:85:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/jet-dashboard\";i:525835;s:98:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/vue-ui/assets/src/js/utils\";i:384;s:99:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/vue-ui/assets/src/js/mixins\";i:2214;s:110:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/vue-ui/assets/src/js/components/layout\";i:16357;s:108:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/vue-ui/assets/src/js/components/form\";i:28781;s:103:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/vue-ui/assets/src/js/components\";i:45138;s:92:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/vue-ui/assets/src/js\";i:49933;s:101:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/vue-ui/assets/src/scss/mixins\";i:494;s:104:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/vue-ui/assets/src/scss/variables\";i:752;s:101:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/vue-ui/assets/src/scss/common\";i:3792;s:105:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/vue-ui/assets/src/scss/components\";i:16443;s:94:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/vue-ui/assets/src/scss\";i:22177;s:89:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/vue-ui/assets/src\";i:72110;s:88:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/vue-ui/assets/js\";i:511839;s:85:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/vue-ui/assets\";i:583949;s:89:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/vue-ui/components\";i:23318;s:78:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/vue-ui\";i:610281;s:105:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/jet-elementor-extension/assets/js\";i:5365;s:102:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/jet-elementor-extension/assets\";i:5365;s:108:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/jet-elementor-extension/inc/controls\";i:1302;s:99:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/jet-elementor-extension/inc\";i:6677;s:95:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/jet-elementor-extension\";i:14623;s:82:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules/db-updater\";i:7076;s:71:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/modules\";i:1163752;s:90:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/compatibility/wpml-modules\";i:2588;s:77:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/compatibility\";i:7209;s:70:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/addons\";i:139268;s:88:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/settings/subpage-modules\";i:5117;s:72:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/settings\";i:7216;s:82:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/rest-api/endpoints\";i:8924;s:72:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/rest-api\";i:12083;s:68:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes/base\";i:17435;s:63:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/includes\";i:1373388;s:65:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/dummy-data\";i:45332;s:72:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/assets/scss/utils\";i:1030;s:73:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/assets/scss/addons\";i:19520;s:66:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/assets/scss\";i:27800;s:65:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/assets/css\";i:41615;s:64:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/assets/js\";i:70238;s:68:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/assets/images\";i:26500;s:61:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/assets\";i:166153;s:80:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/templates/admin-templates\";i:1275;s:84:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/templates/jet-switcher/global\";i:3120;s:77:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/templates/jet-switcher\";i:3120;s:91:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/templates/jet-image-accordion/global\";i:1675;s:84:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/templates/jet-image-accordion\";i:1675;s:64:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs/templates\";i:6817;s:54:\"/www/btpayments_753/public/wp-content/plugins/jet-tabs\";i:1710771;s:83:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/templates/jet-reset/global\";i:12545;s:76:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/templates/jet-reset\";i:12545;s:84:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/templates/jet-search/global\";i:2790;s:77:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/templates/jet-search\";i:2790;s:82:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/templates/admin-templates\";i:9197;s:86:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/templates/jet-register/global\";i:6433;s:79:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/templates/jet-register\";i:6433;s:88:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/templates/jet-auth-links/global\";i:4116;s:81:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/templates/jet-auth-links\";i:4116;s:89:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/templates/jet-blocks-cart/global\";i:2892;s:82:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/templates/jet-blocks-cart\";i:2892;s:82:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/templates/jet-logo/global\";i:459;s:75:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/templates/jet-logo\";i:459;s:86:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/templates/jet-nav-menu/global\";i:416;s:79:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/templates/jet-nav-menu\";i:416;s:83:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/templates/jet-login/global\";i:603;s:76:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/templates/jet-login\";i:603;s:66:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/templates\";i:39451;s:78:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/assets/scss/extension\";i:167;s:76:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/assets/scss/widgets\";i:28825;s:75:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/assets/scss/common\";i:162;s:75:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/assets/scss/mixins\";i:3014;s:68:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/assets/scss\";i:37503;s:77:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/assets/css/templates\";i:129286;s:73:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/assets/css/fonts\";i:41795;s:67:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/assets/css\";i:306194;s:70:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/assets/images\";i:33993;s:82:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/assets/js/lib/pw-strength\";i:1783;s:78:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/assets/js/lib/jsticky\";i:5798;s:70:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/assets/js/lib\";i:7581;s:66:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/assets/js\";i:87635;s:63:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/assets\";i:465325;s:89:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/components/integrations\";i:5758;s:76:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/components\";i:5758;s:90:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/settings/subpage-modules\";i:7781;s:74:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/settings\";i:10128;s:84:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/rest-api/endpoints\";i:7914;s:74:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/rest-api\";i:11079;s:84:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/db-updater\";i:7076;s:107:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/jet-elementor-extension/assets/js\";i:5365;s:104:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/jet-elementor-extension/assets\";i:5365;s:110:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/jet-elementor-extension/inc/controls\";i:1302;s:101:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/jet-elementor-extension/inc\";i:6677;s:97:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/jet-elementor-extension\";i:15081;s:91:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/vue-ui/components\";i:34369;s:100:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/vue-ui/assets/src/js/utils\";i:12359;s:110:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/vue-ui/assets/src/js/components/form\";i:44412;s:112:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/vue-ui/assets/src/js/components/layout\";i:16473;s:105:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/vue-ui/assets/src/js/components\";i:60885;s:101:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/vue-ui/assets/src/js/mixins\";i:2214;s:94:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/vue-ui/assets/src/js\";i:84307;s:106:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/vue-ui/assets/src/scss/variables\";i:788;s:107:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/vue-ui/assets/src/scss/components\";i:24884;s:103:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/vue-ui/assets/src/scss/common\";i:3880;s:103:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/vue-ui/assets/src/scss/mixins\";i:852;s:96:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/vue-ui/assets/src/scss\";i:31225;s:91:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/vue-ui/assets/src\";i:121680;s:90:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/vue-ui/assets/js\";i:774512;s:87:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/vue-ui/assets\";i:902340;s:80:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/vue-ui\";i:940935;s:107:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/jet-dashboard/assets/scss/modules\";i:25365;s:106:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/jet-dashboard/assets/scss/mixins\";i:2575;s:99:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/jet-dashboard/assets/scss\";i:52783;s:101:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/jet-dashboard/assets/images\";i:23090;s:98:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/jet-dashboard/assets/css\";i:136351;s:97:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/jet-dashboard/assets/js\";i:62979;s:94:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/jet-dashboard/assets\";i:281351;s:112:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/jet-dashboard/inc/compatibility/themes\";i:564;s:105:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/jet-dashboard/inc/compatibility\";i:3525;s:108:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/jet-dashboard/inc/modules/settings\";i:4138;s:106:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/jet-dashboard/inc/modules/upsale\";i:5661;s:107:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/jet-dashboard/inc/modules/welcome\";i:5073;s:107:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/jet-dashboard/inc/modules/license\";i:3985;s:99:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/jet-dashboard/inc/modules\";i:36680;s:91:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/jet-dashboard/inc\";i:124874;s:102:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/jet-dashboard/views/settings\";i:1641;s:100:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/jet-dashboard/views/upsale\";i:5444;s:101:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/jet-dashboard/views/welcome\";i:21915;s:100:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/jet-dashboard/views/common\";i:12524;s:101:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/jet-dashboard/views/license\";i:24904;s:93:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/jet-dashboard/views\";i:72576;s:87:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/jet-dashboard\";i:534086;s:85:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules/breadcrumbs\";i:42323;s:73:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/modules\";i:1545444;s:80:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/widgets/vendor\";i:55968;s:73:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/widgets\";i:337654;s:81:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/controls/groups\";i:9499;s:74:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/controls\";i:9499;s:70:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes/base\";i:16794;s:65:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/includes\";i:1999388;s:67:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/dummy-data\";i:74062;s:66:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks/languages\";i:231894;s:56:\"/www/btpayments_753/public/wp-content/plugins/jet-blocks\";i:2838454;s:103:\"/www/btpayments_753/public/wp-content/plugins/kava-extra/framework/modules/interface-builder/assets/css\";i:49396;s:114:\"/www/btpayments_753/public/wp-content/plugins/kava-extra/framework/modules/interface-builder/assets/lib/iconpicker\";i:67311;s:111:\"/www/btpayments_753/public/wp-content/plugins/kava-extra/framework/modules/interface-builder/assets/lib/select2\";i:81802;s:115:\"/www/btpayments_753/public/wp-content/plugins/kava-extra/framework/modules/interface-builder/assets/lib/colorpicker\";i:7016;s:103:\"/www/btpayments_753/public/wp-content/plugins/kava-extra/framework/modules/interface-builder/assets/lib\";i:156129;s:115:\"/www/btpayments_753/public/wp-content/plugins/kava-extra/framework/modules/interface-builder/assets/scss/components\";i:6164;s:113:\"/www/btpayments_753/public/wp-content/plugins/kava-extra/framework/modules/interface-builder/assets/scss/controls\";i:24941;s:104:\"/www/btpayments_753/public/wp-content/plugins/kava-extra/framework/modules/interface-builder/assets/scss\";i:41389;s:102:\"/www/btpayments_753/public/wp-content/plugins/kava-extra/framework/modules/interface-builder/assets/js\";i:45735;s:99:\"/www/btpayments_753/public/wp-content/plugins/kava-extra/framework/modules/interface-builder/assets\";i:292649;s:98:\"/www/btpayments_753/public/wp-content/plugins/kava-extra/framework/modules/interface-builder/views\";i:9534;s:105:\"/www/btpayments_753/public/wp-content/plugins/kava-extra/framework/modules/interface-builder/inc/controls\";i:51292;s:96:\"/www/btpayments_753/public/wp-content/plugins/kava-extra/framework/modules/interface-builder/inc\";i:55935;s:92:\"/www/btpayments_753/public/wp-content/plugins/kava-extra/framework/modules/interface-builder\";i:377845;s:84:\"/www/btpayments_753/public/wp-content/plugins/kava-extra/framework/modules/post-meta\";i:13169;s:74:\"/www/btpayments_753/public/wp-content/plugins/kava-extra/framework/modules\";i:391014;s:66:\"/www/btpayments_753/public/wp-content/plugins/kava-extra/framework\";i:396631;s:68:\"/www/btpayments_753/public/wp-content/plugins/kava-extra/assets/scss\";i:1015;s:70:\"/www/btpayments_753/public/wp-content/plugins/kava-extra/assets/images\";i:8103;s:100:\"/www/btpayments_753/public/wp-content/plugins/kava-extra/assets/fonts/nucleo-outline-icon-font/fonts\";i:3605218;s:94:\"/www/btpayments_753/public/wp-content/plugins/kava-extra/assets/fonts/nucleo-outline-icon-font\";i:3782545;s:69:\"/www/btpayments_753/public/wp-content/plugins/kava-extra/assets/fonts\";i:3782545;s:67:\"/www/btpayments_753/public/wp-content/plugins/kava-extra/assets/css\";i:1502;s:63:\"/www/btpayments_753/public/wp-content/plugins/kava-extra/assets\";i:3793165;s:66:\"/www/btpayments_753/public/wp-content/plugins/kava-extra/languages\";i:21158;s:69:\"/www/btpayments_753/public/wp-content/plugins/kava-extra/includes/ext\";i:3647;s:65:\"/www/btpayments_753/public/wp-content/plugins/kava-extra/includes\";i:36261;s:56:\"/www/btpayments_753/public/wp-content/plugins/kava-extra\";i:4255462;s:66:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/languages\";i:68413;s:82:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/templates/admin-templates\";i:1875;s:66:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/templates\";i:1875;s:110:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/jet-elementor-extension/inc/controls\";i:1302;s:101:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/jet-elementor-extension/inc\";i:6677;s:107:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/jet-elementor-extension/assets/js\";i:5365;s:104:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/jet-elementor-extension/assets\";i:5365;s:97:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/jet-elementor-extension\";i:14623;s:97:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/jet-dashboard/assets/js\";i:62979;s:101:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/jet-dashboard/assets/images\";i:23090;s:98:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/jet-dashboard/assets/css\";i:136351;s:106:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/jet-dashboard/assets/scss/mixins\";i:2575;s:107:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/jet-dashboard/assets/scss/modules\";i:25365;s:99:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/jet-dashboard/assets/scss\";i:52783;s:94:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/jet-dashboard/assets\";i:281351;s:112:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/jet-dashboard/inc/compatibility/themes\";i:564;s:105:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/jet-dashboard/inc/compatibility\";i:3525;s:107:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/jet-dashboard/inc/modules/welcome\";i:5073;s:107:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/jet-dashboard/inc/modules/license\";i:3985;s:108:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/jet-dashboard/inc/modules/settings\";i:4138;s:106:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/jet-dashboard/inc/modules/upsale\";i:5661;s:99:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/jet-dashboard/inc/modules\";i:36680;s:91:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/jet-dashboard/inc\";i:122168;s:102:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/jet-dashboard/views/settings\";i:1641;s:101:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/jet-dashboard/views/welcome\";i:21915;s:101:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/jet-dashboard/views/license\";i:24904;s:100:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/jet-dashboard/views/upsale\";i:5444;s:100:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/jet-dashboard/views/common\";i:12524;s:93:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/jet-dashboard/views\";i:72576;s:87:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/jet-dashboard\";i:523133;s:103:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/vue-ui/assets/src/scss/common\";i:3792;s:106:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/vue-ui/assets/src/scss/variables\";i:752;s:103:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/vue-ui/assets/src/scss/mixins\";i:494;s:107:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/vue-ui/assets/src/scss/components\";i:23483;s:96:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/vue-ui/assets/src/scss\";i:29217;s:101:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/vue-ui/assets/src/js/mixins\";i:2214;s:110:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/vue-ui/assets/src/js/components/form\";i:43703;s:112:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/vue-ui/assets/src/js/components/layout\";i:16357;s:105:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/vue-ui/assets/src/js/components\";i:60060;s:100:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/vue-ui/assets/src/js/utils\";i:12358;s:94:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/vue-ui/assets/src/js\";i:85505;s:91:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/vue-ui/assets/src\";i:120870;s:90:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/vue-ui/assets/js\";i:850448;s:87:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/vue-ui/assets\";i:977466;s:91:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/vue-ui/components\";i:33278;s:80:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules/vue-ui\";i:1013758;s:73:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/modules\";i:1557457;s:81:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/controls/groups\";i:9504;s:74:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/controls\";i:9504;s:70:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/base\";i:15885;s:69:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/ext\";i:53335;s:90:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/settings/subpage-modules\";i:5194;s:74:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/settings\";i:7315;s:84:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/rest-api/endpoints\";i:7656;s:74:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/rest-api\";i:10821;s:92:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/compatibility/wpml/modules\";i:1167;s:84:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/compatibility/wpml\";i:1167;s:79:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/compatibility\";i:6992;s:72:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes/addons\";i:70157;s:65:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/includes\";i:1755157;s:75:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/assets/scss/addons\";i:8521;s:79:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/assets/scss/extensions\";i:1795;s:68:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/assets/scss\";i:20428;s:67:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/assets/css\";i:32818;s:76:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/assets/js/lib/anime\";i:14420;s:83:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/assets/js/lib/ts-particles\";i:140630;s:83:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/assets/js/lib/particles-js\";i:23364;s:84:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/assets/js/lib/resize-sensor\";i:2234;s:76:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/assets/js/lib/tippy\";i:98336;s:85:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/assets/js/lib/sticky-sidebar\";i:24173;s:70:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/assets/js/lib\";i:303157;s:66:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/assets/js\";i:337730;s:63:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks/assets\";i:390976;s:56:\"/www/btpayments_753/public/wp-content/plugins/jet-tricks\";i:2239056;s:72:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/svg-paths\";i:1225;s:74:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/mask-shapes\";i:2391;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/swiper/v8/css\";i:35772;s:76:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/swiper/v8\";i:500732;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/swiper/css\";i:28823;s:73:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/swiper\";i:972411;s:79:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/e-gallery/js\";i:65251;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/e-gallery/css\";i:7065;s:76:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/e-gallery\";i:72316;s:83:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/inline-editor/js\";i:49905;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/inline-editor\";i:49905;s:76:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/waypoints\";i:30316;s:86:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/jquery-hover-intent\";i:3093;s:78:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/animate.css\";i:22669;s:83:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/jquery-numerator\";i:5194;s:79:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/pickr/themes\";i:9117;s:72:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/pickr\";i:32636;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/font-awesome/json\";i:1168670;s:85:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/font-awesome/fonts\";i:1085661;s:82:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/font-awesome/js\";i:55810;s:83:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/font-awesome/css\";i:419884;s:88:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts\";i:2978212;s:89:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/font-awesome/migration\";i:41049;s:79:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/font-awesome\";i:5749286;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/jquery-easing\";i:8184;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/share-link\";i:7460;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/nouislider\";i:110550;s:87:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/perfect-scrollbar/js\";i:53612;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/perfect-scrollbar\";i:53612;s:72:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/hover\";i:20542;s:78:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/color-thief\";i:6666;s:76:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/flatpickr\";i:157376;s:79:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/eicons/fonts\";i:982888;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/eicons/css\";i:43775;s:73:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/eicons\";i:1450676;s:72:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/tipsy\";i:12799;s:76:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/nprogress\";i:17564;s:75:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/backbone\";i:192428;s:79:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/imagesloaded\";i:19402;s:79:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/e-select2/js\";i:242532;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/e-select2/css\";i:32267;s:76:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/e-select2\";i:274799;s:73:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/dialog\";i:31752;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib/animations\";i:18468;s:66:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/lib\";i:9320104;s:67:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/data\";i:164;s:85:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/images/app/site-editor\";i:161824;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/images/app/onboarding\";i:85684;s:73:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/images/app\";i:247508;s:85:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/images/library-connect\";i:304645;s:69:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/images\";i:783452;s:81:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/js/packages/editor\";i:7786;s:78:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/js/packages/env\";i:2725;s:97:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/js/packages/editor-site-navigation\";i:44104;s:93:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/js/packages/editor-v1-adapters\";i:9486;s:92:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/js/packages/editor-app-bar-ui\";i:20120;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/js/packages/icons\";i:149976;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/js/packages/query\";i:84195;s:91:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/js/packages/editor-documents\";i:10448;s:88:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/js/packages/editor-panels\";i:10728;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/js/packages/ui\";i:2362068;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/js/packages/locations\";i:3933;s:89:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/js/packages/editor-app-bar\";i:22968;s:92:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/js/packages/editor-responsive\";i:8953;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/js/packages/store\";i:154570;s:74:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/js/packages\";i:2892060;s:65:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/js\";i:22980070;s:76:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/css/templates\";i:1337785;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/css/modules/notes\";i:285;s:94:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/css/modules/container-converter\";i:904;s:88:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/css/modules/announcements\";i:7997;s:85:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/css/modules/styleguide\";i:1651;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/css/modules/ai\";i:13073;s:79:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/css/modules/apps\";i:3650;s:74:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/css/modules\";i:27560;s:66:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/css\";i:4927243;s:69:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets/shapes\";i:26279;s:62:\"/www/btpayments_753/public/wp-content/plugins/elementor/assets\";i:38040928;s:75:\"/www/btpayments_753/public/wp-content/plugins/elementor/data/base/processor\";i:877;s:65:\"/www/btpayments_753/public/wp-content/plugins/elementor/data/base\";i:19488;s:79:\"/www/btpayments_753/public/wp-content/plugins/elementor/data/v2/base/exceptions\";i:2215;s:78:\"/www/btpayments_753/public/wp-content/plugins/elementor/data/v2/base/processor\";i:1031;s:83:\"/www/btpayments_753/public/wp-content/plugins/elementor/data/v2/base/endpoint/index\";i:3416;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor/data/v2/base/endpoint\";i:5074;s:68:\"/www/btpayments_753/public/wp-content/plugins/elementor/data/v2/base\";i:34659;s:63:\"/www/btpayments_753/public/wp-content/plugins/elementor/data/v2\";i:43779;s:60:\"/www/btpayments_753/public/wp-content/plugins/elementor/data\";i:72671;s:73:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/dev-tools\";i:11261;s:87:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/compatibility-tag/views\";i:2222;s:81:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/compatibility-tag\";i:14191;s:79:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/element-manager\";i:9722;s:83:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/container-converter\";i:4179;s:91:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/site-navigation/rest-fields\";i:935;s:94:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/site-navigation/data/endpoints\";i:9195;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/site-navigation/data\";i:10716;s:79:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/site-navigation\";i:13695;s:88:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/page-templates/templates\";i:2089;s:78:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/page-templates\";i:13334;s:79:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/favorites/types\";i:1527;s:73:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/favorites\";i:9300;s:83:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/styleguide/controls\";i:498;s:74:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/styleguide\";i:3863;s:73:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/gutenberg\";i:6225;s:68:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/apps\";i:12671;s:76:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/dynamic-tags\";i:3029;s:87:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/landing-pages/documents\";i:2335;s:94:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/landing-pages/admin-menu-items\";i:1200;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/landing-pages\";i:21319;s:83:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/system-info/helpers\";i:1738;s:85:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/system-info/reporters\";i:38591;s:85:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/system-info/templates\";i:937;s:75:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/system-info\";i:51381;s:73:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/admin-bar\";i:3283;s:69:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/notes\";i:1235;s:85:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/elements-color-picker\";i:979;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/history/views\";i:5528;s:71:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/history\";i:17235;s:86:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/announcements/triggers\";i:1803;s:85:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/announcements/classes\";i:2505;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/announcements\";i:8867;s:90:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/image-loading-optimization\";i:11207;s:102:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/promotions/admin-menu-items/interfaces\";i:474;s:91:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/promotions/admin-menu-items\";i:14253;s:82:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/promotions/widgets\";i:2351;s:74:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/promotions\";i:19317;s:79:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/performance-lab\";i:2209;s:92:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/content-sanitizer/interfaces\";i:200;s:81:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/content-sanitizer\";i:1548;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/generator-tag\";i:2352;s:74:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/ai/connect\";i:16901;s:66:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/ai\";i:43874;s:83:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/nested-tabs/widgets\";i:42123;s:75:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/nested-tabs\";i:42874;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/editor-events\";i:1116;s:78:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/shapes/widgets\";i:14595;s:70:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/shapes\";i:15956;s:81:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/library/documents\";i:7119;s:78:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/library/traits\";i:1041;s:71:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/library\";i:12318;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/admin-top-bar\";i:3880;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/notifications\";i:9052;s:107:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/kit-elements-defaults/import-export/runners\";i:3856;s:99:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/kit-elements-defaults/import-export\";i:4731;s:91:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/kit-elements-defaults/utils\";i:5701;s:90:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/kit-elements-defaults/data\";i:3883;s:85:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/kit-elements-defaults\";i:16378;s:72:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/lazyload\";i:3394;s:71:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/web-cli\";i:1109;s:69:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/usage\";i:21544;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/nested-elements/base\";i:3601;s:88:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/nested-elements/controls\";i:483;s:79:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/nested-elements\";i:5712;s:89:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/home/transformations/base\";i:498;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/home/transformations\";i:11947;s:76:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/home/classes\";i:1991;s:68:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/home\";i:18509;s:88:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/nested-accordion/widgets\";i:29984;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/nested-accordion\";i:30686;s:70:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/wp-cli\";i:15690;s:83:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/safe-mode/mu-plugin\";i:3894;s:73:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules/safe-mode\";i:20238;s:63:\"/www/btpayments_753/public/wp-content/plugins/elementor/modules\";i:504732;s:79:\"/www/btpayments_753/public/wp-content/plugins/elementor/includes/widgets/traits\";i:18331;s:72:\"/www/btpayments_753/public/wp-content/plugins/elementor/includes/widgets\";i:466011;s:73:\"/www/btpayments_753/public/wp-content/plugins/elementor/includes/elements\";i:115172;s:87:\"/www/btpayments_753/public/wp-content/plugins/elementor/includes/template-library/forms\";i:1626;s:89:\"/www/btpayments_753/public/wp-content/plugins/elementor/includes/template-library/classes\";i:5782;s:96:\"/www/btpayments_753/public/wp-content/plugins/elementor/includes/template-library/data/endpoints\";i:2321;s:86:\"/www/btpayments_753/public/wp-content/plugins/elementor/includes/template-library/data\";i:3015;s:106:\"/www/btpayments_753/public/wp-content/plugins/elementor/includes/template-library/sources/admin-menu-items\";i:1927;s:89:\"/www/btpayments_753/public/wp-content/plugins/elementor/includes/template-library/sources\";i:69416;s:81:\"/www/btpayments_753/public/wp-content/plugins/elementor/includes/template-library\";i:98646;s:81:\"/www/btpayments_753/public/wp-content/plugins/elementor/includes/editor-templates\";i:65173;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor/includes/controls/groups\";i:91195;s:73:\"/www/btpayments_753/public/wp-content/plugins/elementor/includes/controls\";i:256568;s:69:\"/www/btpayments_753/public/wp-content/plugins/elementor/includes/base\";i:154098;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor/includes/admin-templates\";i:7434;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor/includes/libraries/bfi-thumb\";i:24080;s:96:\"/www/btpayments_753/public/wp-content/plugins/elementor/includes/libraries/wp-background-process\";i:634;s:74:\"/www/btpayments_753/public/wp-content/plugins/elementor/includes/libraries\";i:24714;s:90:\"/www/btpayments_753/public/wp-content/plugins/elementor/includes/settings/admin-menu-items\";i:5891;s:73:\"/www/btpayments_753/public/wp-content/plugins/elementor/includes/settings\";i:57887;s:75:\"/www/btpayments_753/public/wp-content/plugins/elementor/includes/interfaces\";i:409;s:73:\"/www/btpayments_753/public/wp-content/plugins/elementor/includes/managers\";i:85674;s:64:\"/www/btpayments_753/public/wp-content/plugins/elementor/includes\";i:1593181;s:78:\"/www/btpayments_753/public/wp-content/plugins/elementor/app/modules/onboarding\";i:13619;s:95:\"/www/btpayments_753/public/wp-content/plugins/elementor/app/modules/import-export/compatibility\";i:4536;s:91:\"/www/btpayments_753/public/wp-content/plugins/elementor/app/modules/import-export/processes\";i:38595;s:96:\"/www/btpayments_753/public/wp-content/plugins/elementor/app/modules/import-export/runners/revert\";i:6852;s:96:\"/www/btpayments_753/public/wp-content/plugins/elementor/app/modules/import-export/runners/export\";i:11736;s:96:\"/www/btpayments_753/public/wp-content/plugins/elementor/app/modules/import-export/runners/import\";i:19191;s:89:\"/www/btpayments_753/public/wp-content/plugins/elementor/app/modules/import-export/runners\";i:38307;s:81:\"/www/btpayments_753/public/wp-content/plugins/elementor/app/modules/import-export\";i:123421;s:79:\"/www/btpayments_753/public/wp-content/plugins/elementor/app/modules/site-editor\";i:1068;s:95:\"/www/btpayments_753/public/wp-content/plugins/elementor/app/modules/kit-library/data/taxonomies\";i:811;s:99:\"/www/btpayments_753/public/wp-content/plugins/elementor/app/modules/kit-library/data/kits/endpoints\";i:1909;s:89:\"/www/btpayments_753/public/wp-content/plugins/elementor/app/modules/kit-library/data/kits\";i:3433;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor/app/modules/kit-library/data\";i:14128;s:87:\"/www/btpayments_753/public/wp-content/plugins/elementor/app/modules/kit-library/connect\";i:2072;s:79:\"/www/btpayments_753/public/wp-content/plugins/elementor/app/modules/kit-library\";i:21023;s:67:\"/www/btpayments_753/public/wp-content/plugins/elementor/app/modules\";i:159131;s:76:\"/www/btpayments_753/public/wp-content/plugins/elementor/app/admin-menu-items\";i:570;s:59:\"/www/btpayments_753/public/wp-content/plugins/elementor/app\";i:167429;s:70:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/isolation\";i:2281;s:70:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/files/css\";i:40713;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/files/file-types\";i:12381;s:78:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/files/assets/json\";i:706;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/files/assets/svg\";i:7009;s:73:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/files/assets\";i:13391;s:66:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/files\";i:95392;s:70:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/utils/svg\";i:14595;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/utils/promotions\";i:2147;s:88:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/utils/import-export/parsers\";i:29170;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/utils/import-export\";i:100896;s:66:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/utils\";i:154293;s:68:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/schemes\";i:8972;s:81:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/editor/loader/common\";i:7409;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/editor/loader/v2/js\";i:574;s:82:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/editor/loader/v2/scss\";i:1122;s:87:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/editor/loader/v2/templates\";i:1604;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/editor/loader/v2\";i:7705;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/editor/loader/v1/js\";i:26;s:87:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/editor/loader/v1/templates\";i:1602;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/editor/loader/v1\";i:4462;s:74:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/editor/loader\";i:27470;s:90:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/editor/data/globals/endpoints\";i:4306;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/editor/data/globals\";i:5349;s:72:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/editor/data\";i:5349;s:67:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/editor\";i:55107;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/admin/ui/components\";i:2421;s:69:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/admin/ui\";i:2421;s:74:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/admin/notices\";i:4258;s:82:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/admin/menu/interfaces\";i:546;s:71:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/admin/menu\";i:8805;s:66:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/admin\";i:75788;s:83:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/experiments/exceptions\";i:177;s:72:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/experiments\";i:41191;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/kits/documents/tabs\";i:55222;s:75:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/kits/documents\";i:60737;s:74:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/kits/controls\";i:1634;s:71:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/kits/views\";i:3322;s:65:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/kits\";i:79311;s:93:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/common/modules/finder/categories\";i:14074;s:82:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/common/modules/finder\";i:24022;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/common/modules/ajax\";i:7325;s:94:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/common/modules/event-tracker/data\";i:1867;s:89:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/common/modules/event-tracker\";i:9659;s:88:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/common/modules/connect/apps\";i:25949;s:83:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/common/modules/connect\";i:35062;s:75:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/common/modules\";i:76068;s:67:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/common\";i:82577;s:68:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/upgrade\";i:35092;s:75:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/logger/loggers\";i:4682;s:73:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/logger/items\";i:8662;s:67:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/logger\";i:23510;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/base/background-process\";i:14029;s:92:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/base/elements-iteration-actions\";i:6674;s:65:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/base\";i:100014;s:75:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/document-types\";i:8433;s:100:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/page-assets/data-managers/font-icon-svg\";i:3848;s:86:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/page-assets/data-managers\";i:12479;s:72:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/page-assets\";i:15247;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/responsive/files\";i:4968;s:71:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/responsive\";i:9441;s:72:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/breakpoints\";i:18672;s:73:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/role-manager\";i:11204;s:83:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/app/modules/onboarding\";i:464;s:92:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/app/modules/kit-library/connect\";i:707;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/app/modules/kit-library\";i:1172;s:86:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/app/modules/import-export\";i:585;s:72:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/app/modules\";i:2221;s:64:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/app\";i:2576;s:74:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/settings/base\";i:11184;s:88:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/settings/editor-preferences\";i:5681;s:74:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/settings/page\";i:12525;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/settings/general\";i:3826;s:69:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/settings\";i:38313;s:81:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/behaviors/interfaces\";i:636;s:70:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/behaviors\";i:636;s:82:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/frontend/render-modes\";i:2561;s:69:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/frontend\";i:7212;s:74:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/debug/classes\";i:2437;s:66:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/debug\";i:7314;s:73:\"/www/btpayments_753/public/wp-content/plugins/elementor/core/dynamic-tags\";i:21630;s:60:\"/www/btpayments_753/public/wp-content/plugins/elementor/core\";i:917938;s:55:\"/www/btpayments_753/public/wp-content/plugins/elementor\";i:41656669;s:77:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/templates/email\";i:21899;s:79:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/templates/profile\";i:6097;s:77:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/templates/modal\";i:827;s:71:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/templates\";i:94151;s:73:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/sass\";i:33215;s:80:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/dynamic_css\";i:3269;s:78:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/css/admin\";i:134113;s:72:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/css\";i:1145829;s:83:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/img/extensions\";i:144526;s:80:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/img/builder\";i:6726;s:72:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/img\";i:174894;s:77:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/js/admin\";i:172037;s:71:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/js\";i:400879;s:86:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/libs/select2/i18n\";i:55917;s:81:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/libs/select2\";i:341019;s:85:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/libs/jquery-form\";i:58345;s:84:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/libs/um-confirm\";i:10093;s:96:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/libs/pickadate/translations\";i:71210;s:83:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/libs/pickadate\";i:246018;s:90:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/libs/fontawesome/scss\";i:250210;s:94:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/libs/fontawesome/metadata\";i:4356474;s:94:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/libs/fontawesome/webfonts\";i:1012600;s:85:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/libs/fontawesome\";i:5619284;s:81:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/libs/cropper\";i:160088;s:84:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/libs/fileupload\";i:9808;s:79:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/libs/tipsy\";i:16275;s:95:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/libs/legacy/fonticons/font\";i:1585796;s:90:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/libs/legacy/fonticons\";i:1712679;s:80:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/libs/legacy\";i:1712679;s:83:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/libs/raty/font\";i:8942;s:78:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/libs/raty\";i:36772;s:90:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/libs/jquery-ui/images\";i:37214;s:83:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/libs/jquery-ui\";i:107930;s:73:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets/libs\";i:8318311;s:68:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/assets\";i:10076397;s:71:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/languages\";i:295310;s:87:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/lib/mobiledetect\";i:77668;s:74:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/lib\";i:82596;s:96:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/admin/templates/directory\";i:23191;s:93:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/admin/templates/access\";i:7236;s:91:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/admin/templates/form\";i:29395;s:98:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/admin/templates/modal/forms\";i:5668;s:92:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/admin/templates/modal\";i:5982;s:96:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/admin/templates/dashboard\";i:4652;s:91:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/admin/templates/role\";i:30898;s:86:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/admin/templates\";i:113311;s:93:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/admin/core/list-tables\";i:27691;s:96:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/admin/core/packages/2.1.5\";i:3686;s:96:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/admin/core/packages/2.4.0\";i:2527;s:97:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/admin/core/packages/2.0.24\";i:1088;s:97:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/admin/core/packages/2.0.54\";i:1675;s:103:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/admin/core/packages/2.1.17-alpha\";i:5805;s:96:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/admin/core/packages/2.5.0\";i:2029;s:102:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/admin/core/packages/2.1.3-beta3\";i:7462;s:100:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/admin/core/packages/2.0-beta1\";i:70939;s:96:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/admin/core/packages/2.6.0\";i:2807;s:97:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/admin/core/packages/2.0.44\";i:1953;s:97:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/admin/core/packages/2.0.10\";i:4043;s:96:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/admin/core/packages/2.8.0\";i:7168;s:96:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/admin/core/packages/2.3.0\";i:8687;s:102:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/admin/core/packages/2.1.0-beta1\";i:8940;s:97:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/admin/core/packages/1.3.39\";i:1491;s:90:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/admin/core/packages\";i:130300;s:81:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/admin/core\";i:633331;s:76:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/admin\";i:946918;s:75:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/ajax\";i:33142;s:78:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/widgets\";i:2587;s:80:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/core/rest\";i:35718;s:75:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/core\";i:1209575;s:77:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/common\";i:35284;s:79:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/frontend\";i:21271;s:101:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/blocks/um-password-reset/build\";i:753;s:99:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/blocks/um-password-reset/src\";i:458;s:95:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/blocks/um-password-reset\";i:1482;s:92:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/blocks/um-forms/build\";i:1582;s:90:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/blocks/um-forms/src\";i:2104;s:86:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/blocks/um-forms\";i:3992;s:94:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/blocks/um-account/build\";i:2165;s:92:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/blocks/um-account/src\";i:2559;s:88:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/blocks/um-account\";i:5055;s:105:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/blocks/um-member-directories/build\";i:2104;s:103:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/blocks/um-member-directories/src\";i:2849;s:99:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/blocks/um-member-directories\";i:5292;s:77:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes/blocks\";i:15821;s:70:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member/includes\";i:2548260;s:61:\"/www/btpayments_753/public/wp-content/plugins/ultimate-member\";i:13221765;s:73:\"/www/btpayments_753/public/wp-content/plugins/jet-data-importer/templates\";i:15512;s:79:\"/www/btpayments_753/public/wp-content/plugins/jet-data-importer/includes/export\";i:10961;s:79:\"/www/btpayments_753/public/wp-content/plugins/jet-data-importer/includes/config\";i:3248;s:79:\"/www/btpayments_753/public/wp-content/plugins/jet-data-importer/includes/import\";i:114964;s:87:\"/www/btpayments_753/public/wp-content/plugins/jet-data-importer/includes/cache-handlers\";i:7262;s:72:\"/www/btpayments_753/public/wp-content/plugins/jet-data-importer/includes\";i:154013;s:73:\"/www/btpayments_753/public/wp-content/plugins/jet-data-importer/languages\";i:41116;s:74:\"/www/btpayments_753/public/wp-content/plugins/jet-data-importer/assets/img\";i:3322;s:74:\"/www/btpayments_753/public/wp-content/plugins/jet-data-importer/assets/css\";i:19195;s:75:\"/www/btpayments_753/public/wp-content/plugins/jet-data-importer/assets/scss\";i:22622;s:73:\"/www/btpayments_753/public/wp-content/plugins/jet-data-importer/assets/js\";i:107706;s:70:\"/www/btpayments_753/public/wp-content/plugins/jet-data-importer/assets\";i:152845;s:63:\"/www/btpayments_753/public/wp-content/plugins/jet-data-importer\";i:381968;s:76:\"/www/btpayments_753/public/wp-content/plugins/contact-form-7/includes/swv/js\";i:11594;s:83:\"/www/btpayments_753/public/wp-content/plugins/contact-form-7/includes/swv/php/rules\";i:16070;s:77:\"/www/btpayments_753/public/wp-content/plugins/contact-form-7/includes/swv/php\";i:19405;s:73:\"/www/btpayments_753/public/wp-content/plugins/contact-form-7/includes/swv\";i:36560;s:82:\"/www/btpayments_753/public/wp-content/plugins/contact-form-7/includes/block-editor\";i:6364;s:107:\"/www/btpayments_753/public/wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images\";i:32598;s:100:\"/www/btpayments_753/public/wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness\";i:118302;s:89:\"/www/btpayments_753/public/wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes\";i:118302;s:82:\"/www/btpayments_753/public/wp-content/plugins/contact-form-7/includes/js/jquery-ui\";i:118302;s:72:\"/www/btpayments_753/public/wp-content/plugins/contact-form-7/includes/js\";i:132080;s:73:\"/www/btpayments_753/public/wp-content/plugins/contact-form-7/includes/css\";i:3046;s:86:\"/www/btpayments_753/public/wp-content/plugins/contact-form-7/includes/config-validator\";i:32820;s:69:\"/www/btpayments_753/public/wp-content/plugins/contact-form-7/includes\";i:436479;s:76:\"/www/btpayments_753/public/wp-content/plugins/contact-form-7/modules/akismet\";i:8047;s:78:\"/www/btpayments_753/public/wp-content/plugins/contact-form-7/modules/recaptcha\";i:14744;s:75:\"/www/btpayments_753/public/wp-content/plugins/contact-form-7/modules/stripe\";i:20526;s:79:\"/www/btpayments_753/public/wp-content/plugins/contact-form-7/modules/sendinblue\";i:24380;s:85:\"/www/btpayments_753/public/wp-content/plugins/contact-form-7/modules/constant-contact\";i:31357;s:68:\"/www/btpayments_753/public/wp-content/plugins/contact-form-7/modules\";i:212578;s:67:\"/www/btpayments_753/public/wp-content/plugins/contact-form-7/assets\";i:31340;s:70:\"/www/btpayments_753/public/wp-content/plugins/contact-form-7/admin/css\";i:9805;s:69:\"/www/btpayments_753/public/wp-content/plugins/contact-form-7/admin/js\";i:14466;s:75:\"/www/btpayments_753/public/wp-content/plugins/contact-form-7/admin/includes\";i:36726;s:66:\"/www/btpayments_753/public/wp-content/plugins/contact-form-7/admin\";i:88434;s:70:\"/www/btpayments_753/public/wp-content/plugins/contact-form-7/languages\";i:128;s:60:\"/www/btpayments_753/public/wp-content/plugins/contact-form-7\";i:801528;s:70:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/assets/js\";i:28733;s:71:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/assets/css\";i:20410;s:71:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/assets/img\";i:46481;s:67:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/assets\";i:103820;s:94:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/templates/admin/templates-library\";i:19743;s:90:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/templates/admin/theme-builder\";i:61;s:94:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/templates/admin/setting-templates\";i:6531;s:76:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/templates/admin\";i:26335;s:77:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/templates/editor\";i:4824;s:70:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/templates\";i:38510;s:73:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/lib\";i:79101;s:93:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/theme-builder/templates\";i:981;s:101:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/theme-builder/assets/builder/js\";i:1857173;s:102:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/theme-builder/assets/builder/img\";i:6849;s:102:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/theme-builder/assets/builder/css\";i:26574;s:98:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/theme-builder/assets/builder\";i:1890596;s:90:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/theme-builder/assets\";i:1890596;s:92:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/theme-builder/includes\";i:43068;s:83:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/theme-builder\";i:1940744;s:87:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/templates/sources\";i:23185;s:79:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/templates\";i:72681;s:99:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/elementor/assets/scss/modules\";i:8111;s:91:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/elementor/assets/scss\";i:9627;s:90:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/elementor/assets/css\";i:11799;s:89:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/elementor/assets/js\";i:25835;s:86:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/elementor/assets\";i:53409;s:94:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/elementor/document-types\";i:14811;s:88:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/elementor/controls\";i:5003;s:79:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/elementor\";i:96091;s:100:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/template-structures/structures\";i:14463;s:89:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/template-structures\";i:24565;s:101:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/interface-builder/views\";i:9534;s:118:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/interface-builder/assets/lib/colorpicker\";i:7016;s:114:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/interface-builder/assets/lib/select2\";i:81802;s:117:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/interface-builder/assets/lib/iconpicker\";i:67311;s:106:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/interface-builder/assets/lib\";i:156129;s:106:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/interface-builder/assets/css\";i:49396;s:105:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/interface-builder/assets/js\";i:45735;s:102:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/interface-builder/assets\";i:251260;s:108:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/interface-builder/inc/controls\";i:51292;s:99:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/interface-builder/inc\";i:55935;s:95:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/interface-builder\";i:330631;s:104:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/cherry-x-vue-ui/components\";i:34369;s:103:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/cherry-x-vue-ui/assets/js\";i:772499;s:100:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/cherry-x-vue-ui/assets\";i:772499;s:93:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/cherry-x-vue-ui\";i:811092;s:87:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/admin-bar\";i:9700;s:116:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/jet-dashboard/inc/compatibility/themes\";i:564;s:109:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/jet-dashboard/inc/compatibility\";i:3525;s:111:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/jet-dashboard/inc/modules/welcome\";i:5073;s:111:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/jet-dashboard/inc/modules/license\";i:3985;s:112:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/jet-dashboard/inc/modules/settings\";i:4138;s:110:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/jet-dashboard/inc/modules/upsale\";i:5661;s:103:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/jet-dashboard/inc/modules\";i:30532;s:95:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/jet-dashboard/inc\";i:112673;s:106:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/jet-dashboard/views/settings\";i:1641;s:104:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/jet-dashboard/views/upsale\";i:5444;s:105:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/jet-dashboard/views/welcome\";i:21915;s:105:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/jet-dashboard/views/license\";i:24904;s:104:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/jet-dashboard/views/common\";i:12524;s:97:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/jet-dashboard/views\";i:66428;s:105:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/jet-dashboard/assets/images\";i:23090;s:102:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/jet-dashboard/assets/css\";i:136351;s:101:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/jet-dashboard/assets/js\";i:62979;s:111:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/jet-dashboard/assets/scss/modules\";i:25365;s:110:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/jet-dashboard/assets/scss/mixins\";i:2575;s:103:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/jet-dashboard/assets/scss\";i:46635;s:98:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/jet-dashboard/assets\";i:269055;s:91:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules/jet-dashboard\";i:495190;s:77:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/modules\";i:1652598;s:107:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/compatibility/themes/astra/assets/css\";i:94;s:103:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/compatibility/themes/astra/assets\";i:94;s:96:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/compatibility/themes/astra\";i:1264;s:90:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/compatibility/themes\";i:1264;s:107:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/compatibility/plugins/jet-woo-builder\";i:10215;s:109:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/compatibility/plugins/jet-style-manager\";i:1297;s:100:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/compatibility/plugins/polylang\";i:1046;s:96:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/compatibility/plugins/wpml\";i:1158;s:123:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/compatibility/plugins/woocommerce/template-conditions\";i:26189;s:114:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/compatibility/plugins/woocommerce/structures\";i:6162;s:112:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/compatibility/plugins/woocommerce/rest-api\";i:3408;s:103:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/compatibility/plugins/woocommerce\";i:55407;s:91:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/compatibility/plugins\";i:69123;s:83:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/compatibility\";i:72943;s:113:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/template-conditions/conditions/cpt-singular\";i:7036;s:112:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/template-conditions/conditions/cpt-archive\";i:9124;s:100:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/template-conditions/conditions\";i:56056;s:89:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/template-conditions\";i:79577;s:86:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/locations/render\";i:7832;s:79:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/locations\";i:17752;s:94:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/settings/subpage-modules\";i:5283;s:78:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/settings\";i:27658;s:102:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/rest-api/endpoints/theme-builder\";i:10629;s:88:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/rest-api/endpoints\";i:28859;s:78:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes/rest-api\";i:40724;s:69:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/includes\";i:4161450;s:70:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core/languages\";i:70481;s:60:\"/www/btpayments_753/public/wp-content/plugins/jet-theme-core\";i:4383524;s:93:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-animated-text/global\";i:2550;s:86:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-animated-text\";i:2550;s:91:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-team-member/global\";i:1401;s:84:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-team-member\";i:1401;s:97:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-instagram-gallery/global\";i:1374;s:90:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-instagram-gallery\";i:1374;s:86:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-slider/global\";i:5802;s:79:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-slider\";i:5802;s:90:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-price-list/global\";i:1735;s:83:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-price-list\";i:1735;s:88:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-timeline/global\";i:3298;s:81:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-timeline\";i:3298;s:84:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/admin-templates\";i:18665;s:87:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-dropbar/global\";i:2781;s:80:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-dropbar\";i:2781;s:96:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-image-comparison/global\";i:3013;s:89:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-image-comparison\";i:3013;s:85:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-video/global\";i:4659;s:78:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-video\";i:4659;s:92:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-testimonials/global\";i:2903;s:85:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-testimonials\";i:2903;s:93:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-pricing-table/global\";i:10259;s:86:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-pricing-table\";i:10259;s:92:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-animated-box/global\";i:5453;s:85:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-animated-box\";i:5453;s:95:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-carousel/global/simple\";i:4125;s:96:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-carousel/global/banners\";i:3757;s:88:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-carousel/global\";i:8564;s:81:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-carousel\";i:8564;s:88:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-services/global\";i:1009;s:81:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-services\";i:1009;s:97:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-scroll-navigation/global\";i:2123;s:90:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-scroll-navigation\";i:2123;s:95:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-countdown-timer/global\";i:3110;s:88:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-countdown-timer\";i:3110;s:85:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-posts/global\";i:5950;s:78:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-posts\";i:5950;s:86:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-brands/global\";i:704;s:79:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-brands\";i:704;s:98:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-progress-bar/global/types\";i:3259;s:92:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-progress-bar/global\";i:4989;s:85:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-progress-bar\";i:4989;s:86:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-banner/global\";i:969;s:79:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-banner\";i:969;s:93:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-images-layout/global\";i:4950;s:86:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-images-layout\";i:4950;s:95:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-circle-progress/global\";i:6386;s:88:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-circle-progress\";i:6386;s:94:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-subscribe-form/global\";i:1950;s:87:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-subscribe-form\";i:1950;s:86:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-button/global\";i:2013;s:79:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-button\";i:2013;s:96:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-portfolio/global/type-1\";i:3906;s:96:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-portfolio/global/type-2\";i:3855;s:96:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-portfolio/global/type-3\";i:3313;s:96:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-portfolio/global/type-4\";i:3790;s:89:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-portfolio/global\";i:16191;s:82:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-portfolio\";i:16191;s:95:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-download-button/global\";i:1458;s:88:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-download-button\";i:1458;s:99:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-horizontal-timeline/global\";i:6571;s:92:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-horizontal-timeline\";i:6571;s:87:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-weather/global\";i:4179;s:80:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates/jet-weather\";i:4179;s:68:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/templates\";i:135009;s:92:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/settings/subpage-modules\";i:7889;s:76:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/settings\";i:10264;s:86:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/db-updater\";i:7076;s:109:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/jet-elementor-extension/assets/js\";i:5365;s:106:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/jet-elementor-extension/assets\";i:5365;s:112:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/jet-elementor-extension/inc/controls\";i:1302;s:103:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/jet-elementor-extension/inc\";i:6677;s:99:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/jet-elementor-extension\";i:15080;s:102:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/vue-ui/assets/src/js/utils\";i:384;s:103:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/vue-ui/assets/src/js/mixins\";i:2214;s:112:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/vue-ui/assets/src/js/components/form\";i:28781;s:114:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/vue-ui/assets/src/js/components/layout\";i:16357;s:107:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/vue-ui/assets/src/js/components\";i:45138;s:96:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/vue-ui/assets/src/js\";i:49933;s:108:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/vue-ui/assets/src/scss/variables\";i:752;s:109:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/vue-ui/assets/src/scss/components\";i:16443;s:105:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/vue-ui/assets/src/scss/common\";i:3792;s:105:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/vue-ui/assets/src/scss/mixins\";i:494;s:98:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/vue-ui/assets/src/scss\";i:22177;s:93:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/vue-ui/assets/src\";i:72110;s:92:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/vue-ui/assets/js\";i:511839;s:89:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/vue-ui/assets\";i:583949;s:93:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/vue-ui/components\";i:23318;s:82:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/vue-ui\";i:610281;s:108:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/jet-dashboard/inc/modules/upsale\";i:5661;s:109:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/jet-dashboard/inc/modules/welcome\";i:5073;s:109:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/jet-dashboard/inc/modules/license\";i:3985;s:110:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/jet-dashboard/inc/modules/settings\";i:4138;s:101:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/jet-dashboard/inc/modules\";i:36680;s:114:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/jet-dashboard/inc/compatibility/themes\";i:564;s:107:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/jet-dashboard/inc/compatibility\";i:3525;s:93:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/jet-dashboard/inc\";i:124874;s:102:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/jet-dashboard/views/upsale\";i:5444;s:102:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/jet-dashboard/views/common\";i:12524;s:103:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/jet-dashboard/views/welcome\";i:21915;s:104:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/jet-dashboard/views/settings\";i:1641;s:103:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/jet-dashboard/views/license\";i:24904;s:95:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/jet-dashboard/views\";i:72576;s:103:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/jet-dashboard/assets/images\";i:23090;s:100:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/jet-dashboard/assets/css\";i:136351;s:109:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/jet-dashboard/assets/scss/modules\";i:25365;s:108:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/jet-dashboard/assets/scss/mixins\";i:2575;s:101:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/jet-dashboard/assets/scss\";i:52783;s:99:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/jet-dashboard/assets/js\";i:62979;s:96:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/jet-dashboard/assets\";i:281351;s:89:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules/jet-dashboard\";i:525835;s:75:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/modules\";i:1164221;s:86:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/rest-api/endpoints\";i:7785;s:76:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/rest-api\";i:10993;s:93:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/lib/compatibility/modules\";i:23738;s:85:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/lib/compatibility\";i:50221;s:71:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/lib\";i:50221;s:84:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/template-library\";i:11773;s:81:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/addons/vendor\";i:77218;s:74:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/addons\";i:1632080;s:83:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/controls/groups\";i:9785;s:76:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/controls\";i:14090;s:78:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/shortcodes\";i:25429;s:71:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/ext\";i:20919;s:72:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes/base\";i:26112;s:67:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/includes\";i:3061367;s:69:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/dummy-data\";i:1765834;s:68:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/languages\";i:817849;s:84:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/css/lib/mejs-speed\";i:1412;s:91:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/css/lib/slider-pro/images\";i:695;s:84:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/css/lib/slider-pro\";i:29820;s:78:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/css/lib/peel\";i:1210;s:83:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/css/lib/juxtapose\";i:10590;s:73:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/css/lib\";i:43032;s:69:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/css\";i:684327;s:75:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/scss/skin\";i:16792;s:75:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/scss/base\";i:15842;s:77:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/scss/addons\";i:123694;s:77:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/scss/mixins\";i:2695;s:70:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/scss\";i:295601;s:75:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/animation\";i:162867;s:83:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/js/lib/slider-pro\";i:98659;s:78:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/js/lib/tippy\";i:125081;s:79:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/js/lib/peeljs\";i:49008;s:79:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/js/lib/lottie\";i:253228;s:83:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/js/lib/masonry-js\";i:23647;s:84:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/js/lib/google-maps\";i:11029;s:86:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/js/lib/resize-sensor\";i:2234;s:83:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/js/lib/salvattore\";i:23260;s:84:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/js/lib/html2canvas\";i:198278;s:80:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/js/lib/oridomi\";i:43946;s:83:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/js/lib/mejs-speed\";i:5006;s:78:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/js/lib/slick\";i:42863;s:80:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/js/lib/tweenjs\";i:115514;s:82:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/js/lib/juxtapose\";i:37344;s:81:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/js/lib/chart-js\";i:172812;s:84:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/js/lib/tablesorter\";i:44381;s:81:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/js/lib/anime-js\";i:14420;s:72:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/js/lib\";i:1260710;s:68:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/js\";i:1515191;s:86:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/images/weather-icons\";i:92421;s:72:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets/images\";i:208380;s:65:\"/www/btpayments_753/public/wp-content/plugins/jet-elements/assets\";i:2866366;s:58:\"/www/btpayments_753/public/wp-content/plugins/jet-elements\";i:8703467;s:92:\"/www/btpayments_753/public/wp-content/plugins/jet-plugins-wizard/templates/configure-plugins\";i:525;s:84:\"/www/btpayments_753/public/wp-content/plugins/jet-plugins-wizard/templates/dashboard\";i:1327;s:74:\"/www/btpayments_753/public/wp-content/plugins/jet-plugins-wizard/templates\";i:14820;s:76:\"/www/btpayments_753/public/wp-content/plugins/jet-plugins-wizard/assets/scss\";i:13758;s:74:\"/www/btpayments_753/public/wp-content/plugins/jet-plugins-wizard/assets/js\";i:6274;s:75:\"/www/btpayments_753/public/wp-content/plugins/jet-plugins-wizard/assets/css\";i:14113;s:71:\"/www/btpayments_753/public/wp-content/plugins/jet-plugins-wizard/assets\";i:34145;s:80:\"/www/btpayments_753/public/wp-content/plugins/jet-plugins-wizard/includes/config\";i:1488;s:73:\"/www/btpayments_753/public/wp-content/plugins/jet-plugins-wizard/includes\";i:64764;s:74:\"/www/btpayments_753/public/wp-content/plugins/jet-plugins-wizard/languages\";i:49081;s:64:\"/www/btpayments_753/public/wp-content/plugins/jet-plugins-wizard\";i:172874;s:71:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/assets/data\";i:109;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/assets/lib/lottie\";i:711407;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/assets/lib/sticky\";i:13484;s:87:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro\";i:119898;s:85:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/assets/lib/html2canvas/js\";i:468619;s:82:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/assets/lib/html2canvas\";i:468619;s:83:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/assets/lib/instant-page\";i:9329;s:81:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/assets/lib/smartmenus\";i:69932;s:86:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/assets/lib/dom-to-image/js\";i:30687;s:83:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/assets/lib/dom-to-image\";i:30687;s:70:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/assets/lib\";i:1423356;s:87:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/assets/images/announcements\";i:15106;s:73:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/assets/images\";i:19165;s:81:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/assets/js/packages/ui\";i:4998811;s:110:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/assets/js/packages/editor-site-navigation-extended\";i:5338;s:91:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/assets/js/packages/editor-notes\";i:5761;s:104:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/assets/js/packages/editor-documents-extended\";i:25158;s:78:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/assets/js/packages\";i:5035068;s:75:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/assets/js/notes\";i:1761820;s:69:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/assets/js\";i:10080319;s:96:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/assets/css/modules/forms/submissions\";i:15350;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/assets/css/modules/forms\";i:15350;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/assets/css/modules/notes\";i:2735;s:78:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/assets/css/modules\";i:249657;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/assets/css/templates\";i:2126604;s:70:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/assets/css\";i:6447981;s:66:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/assets\";i:17970930;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/license/assets/js\";i:778;s:74:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/license/assets\";i:778;s:75:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/license/notices\";i:2441;s:67:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/license\";i:54161;s:71:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/sample-data\";i:222479;s:69:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/data/base\";i:255;s:64:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/data\";i:690;s:64:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/base\";i:44118;s:90:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/screenshots/app/assets\";i:0;s:83:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/screenshots/app\";i:0;s:86:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/screenshots/assets\";i:0;s:79:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/screenshots\";i:13892;s:105:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/forms/submissions/database/migrations\";i:9262;s:107:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/forms/submissions/database/repositories\";i:3566;s:103:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/forms/submissions/database/entities\";i:1852;s:94:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/forms/submissions/database\";i:39547;s:92:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/forms/submissions/assets\";i:0;s:93:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/forms/submissions/actions\";i:5958;s:100:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints\";i:12054;s:100:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/forms/submissions/data/responses\";i:657;s:90:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/forms/submissions/data\";i:22656;s:102:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/forms/submissions/admin-menu-items\";i:3172;s:92:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/forms/submissions/export\";i:4795;s:85:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/forms/submissions\";i:85965;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/forms/registrars\";i:3709;s:81:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/forms/classes\";i:74573;s:82:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/forms/controls\";i:1192;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/forms/fields\";i:35368;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/forms/assets\";i:0;s:78:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/forms/data\";i:0;s:81:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/forms/actions\";i:95650;s:81:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/forms/widgets\";i:102394;s:73:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/forms\";i:405938;s:94:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/woocommerce/data/endpoints\";i:2777;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/woocommerce/data\";i:3263;s:91:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/woocommerce/tags/traits\";i:835;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/woocommerce/tags\";i:17102;s:97:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/woocommerce/wc-templates/cart\";i:5007;s:92:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/woocommerce/wc-templates\";i:5007;s:88:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/woocommerce/settings\";i:28647;s:86:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/woocommerce/traits\";i:6501;s:90:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/woocommerce/conditions\";i:3733;s:89:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/woocommerce/documents\";i:11622;s:87:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/woocommerce/widgets\";i:544462;s:86:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/woocommerce/assets\";i:0;s:87:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/woocommerce/classes\";i:14094;s:85:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/woocommerce/skins\";i:3995;s:79:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/woocommerce\";i:695185;s:83:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/flip-box/assets\";i:0;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/flip-box/widgets\";i:46106;s:76:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/flip-box\";i:46420;s:90:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/nested-carousel/assets\";i:0;s:91:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/nested-carousel/widgets\";i:14366;s:83:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/nested-carousel\";i:14942;s:83:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/hotspot/widgets\";i:33797;s:82:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/hotspot/assets\";i:0;s:75:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/hotspot\";i:34109;s:89:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/global-widget/widgets\";i:6391;s:87:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/global-widget/views\";i:2559;s:91:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/global-widget/documents\";i:1634;s:86:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/global-widget/data\";i:1027;s:88:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/global-widget/assets\";i:0;s:81:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/global-widget\";i:20607;s:81:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/sticky/assets\";i:0;s:74:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/sticky\";i:5362;s:89:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/video-playlist/assets\";i:0;s:90:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/video-playlist/widgets\";i:70222;s:82:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/video-playlist\";i:70620;s:82:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/gallery/assets\";i:0;s:83:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/gallery/widgets\";i:42224;s:75:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/gallery\";i:42678;s:85:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/custom-attributes\";i:5123;s:82:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/slides/widgets\";i:39962;s:81:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/slides/assets\";i:0;s:74:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/slides\";i:40271;s:86:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/blockquote/widgets\";i:28112;s:85:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/blockquote/assets\";i:0;s:78:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/blockquote\";i:28433;s:86:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/scroll-snap/assets\";i:0;s:79:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/scroll-snap\";i:3606;s:89:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/share-buttons/widgets\";i:17903;s:88:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/share-buttons/assets\";i:0;s:81:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/share-buttons\";i:20529;s:90:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/tiers/admin-menu-items\";i:4498;s:73:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/tiers\";i:5865;s:82:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/lottie/widgets\";i:20813;s:92:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/lottie/assets/animations\";i:112811;s:81:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/lottie/assets\";i:112811;s:74:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/lottie\";i:135299;s:86:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/loop-filter/assets\";i:0;s:95:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/loop-filter/data/interfaces\";i:376;s:94:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/loop-filter/data/endpoints\";i:7728;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/loop-filter/data\";i:8986;s:90:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/loop-filter/query/data\";i:775;s:96:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/loop-filter/query/interfaces\";i:272;s:97:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/loop-filter/query/query-types\";i:7928;s:85:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/loop-filter/query\";i:19098;s:86:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/loop-filter/traits\";i:5012;s:87:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/loop-filter/widgets\";i:24213;s:79:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/loop-filter\";i:69704;s:83:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/element-manager\";i:2609;s:83:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/nav-menu/assets\";i:0;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/nav-menu/widgets\";i:45379;s:76:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/nav-menu\";i:45693;s:90:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/loop-builder/documents\";i:14864;s:87:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/loop-builder/traits\";i:19203;s:88:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/loop-builder/widgets\";i:29740;s:94:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/loop-builder/assets/images\";i:21176;s:87:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/loop-builder/assets\";i:21176;s:86:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/loop-builder/views\";i:4372;s:90:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/loop-builder/providers\";i:13935;s:90:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/loop-builder/files/css\";i:6250;s:86:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/loop-builder/files\";i:6250;s:86:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/loop-builder/skins\";i:15074;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/loop-builder\";i:134368;s:73:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/usage\";i:6833;s:85:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/mega-menu/widgets\";i:79835;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/mega-menu/assets\";i:0;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/mega-menu/traits\";i:1535;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/mega-menu\";i:82888;s:90:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/announcements/triggers\";i:832;s:81:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/announcements\";i:3205;s:85:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/compatibility-tag\";i:1757;s:83:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/payments/assets\";i:0;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/payments/classes\";i:16928;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/payments/widgets\";i:29222;s:76:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/payments\";i:62454;s:85:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/custom-css/assets\";i:0;s:95:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/custom-css/admin-menu-items\";i:769;s:78:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/custom-css\";i:6587;s:89:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/query-control/classes\";i:18249;s:88:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/query-control/assets\";i:0;s:90:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/query-control/controls\";i:31071;s:81:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/query-control\";i:79204;s:74:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/wp-cli\";i:3703;s:92:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/table-of-contents/assets\";i:0;s:93:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/table-of-contents/widgets\";i:22549;s:85:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/table-of-contents\";i:23128;s:89:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/theme-builder/classes\";i:47529;s:95:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/theme-builder/theme-support\";i:2767;s:98:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/theme-builder/admin-menu-items\";i:645;s:91:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/theme-builder/documents\";i:45388;s:87:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/theme-builder/views\";i:6819;s:92:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/theme-builder/conditions\";i:21182;s:87:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/theme-builder/skins\";i:16752;s:89:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/theme-builder/widgets\";i:22431;s:95:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/theme-builder/assets/images\";i:1486;s:88:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/theme-builder/assets\";i:1486;s:81:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/theme-builder\";i:180718;s:86:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/custom-code/assets\";i:0;s:96:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/custom-code/admin-menu-items\";i:3629;s:79:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/custom-code\";i:32840;s:81:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/admin-top-bar\";i:1477;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/motion-fx/assets\";i:0;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/motion-fx\";i:18255;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/countdown/assets\";i:0;s:85:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/countdown/widgets\";i:19820;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/countdown\";i:20138;s:90:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/call-to-action/widgets\";i:51681;s:89:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/call-to-action/assets\";i:0;s:82:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/call-to-action\";i:52013;s:92:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/animated-headline/assets\";i:0;s:93:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/animated-headline/widgets\";i:16696;s:85:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/animated-headline\";i:17037;s:93:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags\";i:11630;s:88:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset\";i:13914;s:91:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/dynamic-tags/components\";i:1885;s:90:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/base\";i:3134;s:85:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags\";i:68167;s:90:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags\";i:13196;s:85:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/dynamic-tags/pods\";i:17326;s:89:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags\";i:14042;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/dynamic-tags/acf\";i:19483;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/dynamic-tags\";i:125847;s:89:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/assets-manager/assets\";i:0;s:111:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/admin-menu-items\";i:5017;s:110:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/icon-sets\";i:12869;s:100:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons\";i:34005;s:100:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/fonts\";i:21887;s:94:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types\";i:86482;s:90:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/assets-manager/classes\";i:13542;s:82:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/assets-manager\";i:101137;s:91:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/page-transitions/assets\";i:0;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/page-transitions\";i:24243;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/posts/assets\";i:0;s:81:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/posts/widgets\";i:43295;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/posts/traits\";i:18556;s:78:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/posts/data\";i:1472;s:79:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/posts/skins\";i:67761;s:73:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/posts\";i:132682;s:89:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/code-highlight/assets\";i:0;s:90:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/code-highlight/widgets\";i:7857;s:82:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/code-highlight\";i:9615;s:91:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/progress-tracker/assets\";i:0;s:92:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/progress-tracker/widgets\";i:16971;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/progress-tracker\";i:17308;s:87:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/role-manager/assets\";i:0;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/role-manager\";i:4149;s:107:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/display-conditions/classes/dynamic-tags\";i:4233;s:94:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/display-conditions/classes\";i:19721;s:93:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/display-conditions/assets\";i:0;s:102:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/display-conditions/conditions/base\";i:6812;s:97:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/display-conditions/conditions\";i:38588;s:86:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/display-conditions\";i:65729;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/carousel/widgets\";i:81480;s:83:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/carousel/assets\";i:0;s:76:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/carousel\";i:81842;s:88:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/notes/data/endpoints\";i:7302;s:78:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/notes/data\";i:27051;s:87:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/notes/assets/images\";i:3936;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/notes/assets\";i:3936;s:93:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/notes/notifications/views\";i:2709;s:87:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/notes/notifications\";i:8076;s:88:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/notes/database/query\";i:17313;s:93:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/notes/database/migrations\";i:4811;s:95:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/notes/database/transformers\";i:1503;s:89:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/notes/database/models\";i:15825;s:82:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/notes/database\";i:40569;s:78:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/notes/user\";i:14673;s:73:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/notes\";i:118165;s:82:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/social/classes\";i:6012;s:81:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/social/assets\";i:0;s:82:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/social/widgets\";i:19807;s:74:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/social\";i:26551;s:83:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/library/widgets\";i:2482;s:82:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/library/assets\";i:0;s:86:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/library/wp-widgets\";i:5125;s:83:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/library/classes\";i:2169;s:75:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/library\";i:14140;s:89:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/theme-elements/assets\";i:0;s:90:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/theme-elements/widgets\";i:137828;s:82:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/theme-elements\";i:138528;s:90:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/popup/admin-menu-items\";i:2863;s:90:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/popup/display-settings\";i:11850;s:96:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers\";i:12618;s:94:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/popup/assets/images/timing\";i:26056;s:87:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/popup/assets/images\";i:42697;s:80:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/popup/assets\";i:42697;s:73:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/popup\";i:92983;s:82:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/pricing/assets\";i:0;s:83:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/pricing/widgets\";i:69889;s:75:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules/pricing\";i:70222;s:67:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/modules\";i:3456631;s:71:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/editor\";i:13368;s:91:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/integrations/actions/email\";i:7732;s:85:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/integrations/actions\";i:8766;s:88:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/integrations/exceptions\";i:2014;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/integrations\";i:13567;s:85:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/notifications/traits\";i:678;s:78:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/notifications\";i:2012;s:74:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/behaviors\";i:2320;s:73:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/database\";i:45650;s:72:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/preview\";i:615;s:72:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/upgrade\";i:34918;s:74:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/isolation\";i:575;s:105:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/modules/import-export/runners/revert\";i:1795;s:105:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/modules/import-export/runners/import\";i:3883;s:105:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/modules/import-export/runners/export\";i:1499;s:98:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/modules/import-export/runners\";i:7177;s:90:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/modules/import-export\";i:9457;s:104:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/atoms\";i:2767;s:112:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands\";i:1205;s:103:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data\";i:1479;s:108:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules\";i:8370;s:111:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/part-actions\";i:4568;s:115:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions\";i:20320;s:104:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages\";i:28464;s:108:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/organisms\";i:2860;s:115:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/services\";i:2744;s:113:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/models\";i:1138;s:106:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context\";i:16636;s:104:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/hooks\";i:1942;s:98:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js\";i:70817;s:95:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets\";i:70817;s:103:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints\";i:11274;s:103:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/responses\";i:632;s:93:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data\";i:12693;s:88:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/modules/site-editor\";i:91315;s:87:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/modules/onboarding\";i:1925;s:88:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/modules/kit-library\";i:2508;s:76:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/modules\";i:105205;s:82:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/assets/styles\";i:580;s:84:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/assets/js/hooks\";i:621;s:81:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/assets/js/ui\";i:956;s:78:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/assets/js\";i:2472;s:75:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app/assets\";i:3052;s:68:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/app\";i:110684;s:77:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/connect/apps\";i:3817;s:72:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/connect\";i:4404;s:70:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/utils\";i:2671;s:70:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/admin\";i:9182;s:78:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core/compatibility\";i:505;s:64:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro/core\";i:255994;s:59:\"/www/btpayments_753/public/wp-content/plugins/elementor-pro\";i:22201916;s:45:\"/www/btpayments_753/public/wp-content/plugins\";i:114515462;s:53:\"/www/btpayments_753/public/wp-content/uploads/2021/03\";i:769999;s:53:\"/www/btpayments_753/public/wp-content/uploads/2021/04\";i:79432980;s:50:\"/www/btpayments_753/public/wp-content/uploads/2021\";i:80202979;s:59:\"/www/btpayments_753/public/wp-content/uploads/wpcf7_uploads\";i:152;s:65:\"/www/btpayments_753/public/wp-content/uploads/ultimatemember/temp\";i:0;s:62:\"/www/btpayments_753/public/wp-content/uploads/ultimatemember/3\";i:0;s:60:\"/www/btpayments_753/public/wp-content/uploads/ultimatemember\";i:0;s:67:\"/www/btpayments_753/public/wp-content/uploads/elementor/screenshots\";i:0;s:62:\"/www/btpayments_753/public/wp-content/uploads/elementor/thumbs\";i:281305;s:59:\"/www/btpayments_753/public/wp-content/uploads/elementor/css\";i:62236;s:55:\"/www/btpayments_753/public/wp-content/uploads/elementor\";i:343541;s:53:\"/www/btpayments_753/public/wp-content/uploads/2024/05\";i:0;s:53:\"/www/btpayments_753/public/wp-content/uploads/2024/06\";i:3091466;s:50:\"/www/btpayments_753/public/wp-content/uploads/2024\";i:3091466;s:45:\"/www/btpayments_753/public/wp-content/uploads\";i:83638138;}','no'),
(921,'um_existing_rows_2769','a:1:{i:0;s:9:\"_um_row_1\";}','yes'),
(922,'um_form_rowdata_2769','a:1:{s:9:\"_um_row_1\";a:5:{s:4:\"type\";s:3:\"row\";s:2:\"id\";s:9:\"_um_row_1\";s:8:\"sub_rows\";i:1;s:4:\"cols\";i:1;s:6:\"origin\";s:9:\"_um_row_1\";}}','yes'),
(947,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:21:\"wangjun@bt-miners.com\";s:7:\"version\";s:5:\"6.7.2\";s:9:\"timestamp\";i:1739300034;}','off'),
(1006,'um_terms_conditions_last_version_upgrade','2.1.8','yes'),
(1007,'um_terms_conditions_version','2.1.8','yes'),
(1014,'um_cache_userdata_3','a:69:{s:2:\"ID\";i:3;s:10:\"user_login\";s:11:\"wangjunTest\";s:9:\"user_pass\";s:34:\"$P$B8UUOf1xUF3NJVTbJxzQOxQuIFifHP1\";s:13:\"user_nicename\";s:11:\"wangjuntest\";s:10:\"user_email\";s:17:\"2354504303@qq.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2024-06-05 08:53:53\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:11:\"wangjunTest\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;s:8:\"nickname\";s:11:\"wangjunTest\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:19:\"syntax_highlighting\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:6:\"locale\";s:0:\"\";s:24:\"um_member_directory_data\";s:137:\"a:5:{s:14:\"account_status\";s:8:\"approved\";s:15:\"hide_in_members\";b:0;s:13:\"profile_photo\";b:0;s:11:\"cover_photo\";b:0;s:8:\"verified\";b:0;}\";s:35:\"um_user_profile_url_slug_user_login\";s:11:\"wangjunTest\";s:9:\"full_name\";s:0:\"\";s:14:\"account_status\";s:8:\"approved\";s:25:\"synced_gravatar_hashed_id\";s:32:\"f8e558564e7bf1e569f6a99f470d8a43\";s:14:\"_um_last_login\";s:19:\"2024-06-05 10:02:07\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"role\";s:10:\"subscriber\";s:5:\"roles\";a:1:{i:0;s:10:\"subscriber\";}s:9:\"is_custom\";s:1:\"0\";s:8:\"priority\";i:0;s:18:\"can_access_wpadmin\";b:0;s:20:\"can_not_see_adminbar\";b:1;s:17:\"can_edit_everyone\";b:0;s:14:\"can_edit_roles\";s:0:\"\";s:19:\"can_delete_everyone\";b:0;s:16:\"can_delete_roles\";s:0:\"\";s:16:\"can_edit_profile\";b:1;s:18:\"can_delete_profile\";b:1;s:12:\"can_view_all\";b:1;s:14:\"can_view_roles\";s:0:\"\";s:24:\"can_make_private_profile\";b:0;s:26:\"can_access_private_profile\";b:0;s:15:\"profile_noindex\";s:0:\"\";s:16:\"default_homepage\";b:1;s:17:\"redirect_homepage\";s:0:\"\";s:6:\"status\";s:7:\"pending\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:16:\"auto_approve_url\";s:0:\"\";s:20:\"login_email_activate\";b:0;s:16:\"checkmail_action\";s:12:\"show_message\";s:17:\"checkmail_message\";s:147:\"Thank you for registering. Before you can login we need you to activate your account by clicking the activation link in the email we just sent you.\";s:13:\"checkmail_url\";s:0:\"\";s:18:\"url_email_activate\";s:0:\"\";s:14:\"pending_action\";s:12:\"show_message\";s:15:\"pending_message\";s:170:\"Thank you for applying for membership to our site. We will review your details and send you an email letting you know whether your application has been successful or not.\";s:11:\"pending_url\";s:0:\"\";s:11:\"after_login\";s:16:\"redirect_profile\";s:18:\"login_redirect_url\";s:0:\"\";s:12:\"after_logout\";s:13:\"redirect_home\";s:19:\"logout_redirect_url\";s:0:\"\";s:12:\"after_delete\";s:13:\"redirect_home\";s:19:\"delete_redirect_url\";s:0:\"\";s:11:\"super_admin\";i:0;}','no'),
(1051,'_transient_um_count_users_pending_dot','0','yes'),
(1387,'WPLANG','','yes'),
(1388,'new_admin_email','superod@bt-miners.com','yes'),
(2919,'secret_key','#|3v=#,vqEXQMLc^-IO}Fjygrl;sHtRXqG|J6q2p=ViPKvP3*7HB8(R$/PY_uT8h','off'),
(19176,'_elementor_pro_editor_activate_license_notice_dismissed','1731919393','auto'),
(19360,'site_logo','3050','auto'),
(19631,'tidio-async-load','1','auto'),
(19640,'tidio-access-token','eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJhdWQiOiI4ZWE4ODNiZS0yOGMzLTRiZmQtOWZlMi00MDkxZWIzOGZlMDgiLCJqdGkiOiIwYzVmZWUzNzE1NDMxMzEzMWE4MWI0ZDM4Y2I2MDRkNTQxNTY0NjU3ZWY5YzhmNjM5MWYyOGJkNjFhMDRjODIwYTgzNjc0ZmE1NWQ3Y2I0NCIsImlhdCI6MTcyOTIyNDg3Mi4wNTc3MzMsIm5iZiI6MTcyOTIyNDg3Mi4wNTc3MzUsImV4cCI6MTcyOTIyODQ3Mi4wNTU3NjMsInN1YiI6IjMxODEwNzgiLCJzY29wZXMiOlsid29yZHByZXNzIl19.fPM58Gt31WciYERAsfkC6KOOhRmQZNlOp_xArO6UiycV5_E1inMLBrLqiK7NRhb8NKPPcfY_2NeaFKiMAeS-SVm7-l1BPRzeSMvSJEvLNzz0GGKyET5-l-u0eok7UxXlYFaj2crq83X4Mms2m22uHsXpgNFFGMTpwrK51ZFvFBwg2QUdTODUnH8wdDvsOBTHDHdFsb-lJLLRLJWtk_UNruGhmpdRwz6rnrBKiT5wFfMmtd-8HVoRCM52DiAHxmGVArxaifLTHCbAq0xJoUwDmsysghVERRlx0pNLDtvIPXJ2kL9oTlKRkhDSgyNF881vuiaXQToOWRhdJ8nFRBqkXw','auto'),
(19641,'tidio-refresh-token','dWiCAtbEoIlOR4HYgTCm8D8McRFQninxwNvjPBkI/iCY1wn0zpb5eEHpEWS6zAo6WFdNdGRqeVVjdElpeTgxc2ZMZDRnRWFWTENOd0NKc1hFUzlzaDlJV2t6TVBiTkVBWkVWUys3Y1R5KzhXS3h2aDMvalA5YTZRZGxWc09SR1hvYkJDQVB2emJWSm02YjV0cFRTN3hkZDNkZGlSc1FFWm1kdmJKVjFvSVVmY2R5T0kxMnhXYk1lVE1nMDNsaFl3dEVMOEc5WG5SMWlIR3lwd2FJVzRkOUVhSXdtditSY2FXb3YwZi94RTY4eVBqckpjOEwvVGo0NHBrelNyR1orVXFxa1FjSmkzQ1FaZy81a1ZzZ0NjOUUwOUd2Nm5vZVF2aDh6TVVsRVN3T25iQ3NoS3A3Z25SUWdXY0FudzJZOElpRnNaVHpialFXUVlwVmIwa1NpSk8zUUkrcEFlMEVHc29zUmpMbFlqZmRvMS81M2xHYlRlTFFndlBnZnZqb0pWVU8yNVlkalVPbjhaNXZkUFFDbFpmM3lPR3NqODZOZjJUQVpRZGdUVmpKYnBUNzE4bHNzVVJ5bDNtczZ1N0VRVWVZN0lacFA2OXMxem9Dd0lnSWN1RjlWYVUzcGVqeWpGWjhqWU9ROVArWStwdlRDNlhwV1ZOd3k1UDczVUhuR1NOSE9SZkkrZHRZMUV2NjFnOVVlSUN0cTBZRXVYaEgyTjFrN0hacFFzU09TWitGeGJzS0swaTd4Z20rL2owdXQxQUdDakVpQk9VVnJOTzJ1eGxic1NQOGpkVlhzSnFMVkxFbDVHN0pPbkhvM2Flek56SVBTWDNodWV5cktVOWl4T01LZlRWNVBMZmNtOEVRdWw2ZUprVzJncTMwV3k2cTIvbDErSUFmeENCbEpRejFUSU9MVHo5TE9NS3BtMXhlbzZoWWVNVVYwRTVVaUxyMitsRUdCbTU2V3hyZGl2TGlkWk1vckRld1M1Q3R6NjJUSm1YQVArM1FZVG5vUXJyQXJXQjR4bnNsL2VyNHhHMkxHYUt0bDZnbGUyb2JVMnlFQkgwUDVXZXVhazdLZkcrSEhnd2xhZ2ZCQWhmcDlhVTNHejgvOUpGUDBKTUwveWxCYkE1TDVUbXliNjlpc1EzNkFpcmFWdXNWUk9vSm1USGNYMng0Vi9Gb0pEM0VZRCtweUg1OC95M2U5UHpiamNkOEUxVmUxbUE2VkdsRnQ5Q1RPRi92VWROT2NKZE1rbVVKenJUVVZNdlRaZXY5YVA3Y28yNVFPUGJrVWVSTlQwTElzNGRXMTYwaFcvZkJ5ZklNRmFma291TDd2NHVBeVJlQ01hVE16akNWQy9CbjZsdUwzMDNSMlp6UnBUL3J5YVRtclJSRTZhdUY4blFFTkQzQnk4Y2gyalJxRGg1WVBtMlZZellqQlhQLzYvMTJheWZmN0gxRzJnV21NSXB1MzNDZ0ZueEJZUFQyOHUzMm1JSS9DOGdBQVVIWnZVejkrVVNRPT0=','auto'),
(19642,'tidio-access-tokens-valid-token','1','auto'),
(19643,'tidio-one-public-key','gdrttev1nzh0kjxpgrvaaqcxnvkshv52','auto'),
(20423,'tidio-lyro-ai-chatbot-notice','1','auto'),
(21920,'_elementor_assets_data','a:2:{s:3:\"svg\";a:1:{s:9:\"font-icon\";a:22:{s:9:\"fas-coins\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"path\";s:531:\"M0 405.3V448c0 35.3 86 64 192 64s192-28.7 192-64v-42.7C342.7 434.4 267.2 448 192 448S41.3 434.4 0 405.3zM320 128c106 0 192-28.7 192-64S426 0 320 0 128 28.7 128 64s86 64 192 64zM0 300.4V352c0 35.3 86 64 192 64s192-28.7 192-64v-51.6c-41.3 34-116.9 51.6-192 51.6S41.3 334.4 0 300.4zm416 11c57.3-11.1 96-31.7 96-55.4v-42.7c-23.2 16.4-57.3 27.6-96 34.5v63.6zM192 160C86 160 0 195.8 0 240s86 80 192 80 192-35.8 192-80-86-80-192-80zm219.3 56.3c60-10.8 100.7-32 100.7-56.3v-42.7c-35.5 25.1-96.5 38.6-160.7 41.8 29.5 14.3 51.2 33.5 60 57.2z\";s:3:\"key\";s:9:\"fas-coins\";}s:7:\"version\";s:6:\"5.15.3\";}s:17:\"fas-mouse-pointer\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:320;s:6:\"height\";i:512;s:4:\"path\";s:286:\"M302.189 329.126H196.105l55.831 135.993c3.889 9.428-.555 19.999-9.444 23.999l-49.165 21.427c-9.165 4-19.443-.571-23.332-9.714l-53.053-129.136-86.664 89.138C18.729 472.71 0 463.554 0 447.977V18.299C0 1.899 19.921-6.096 30.277 5.443l284.412 292.542c11.472 11.179 3.007 31.141-12.5 31.141z\";s:3:\"key\";s:17:\"fas-mouse-pointer\";}s:7:\"version\";s:6:\"5.15.3\";}s:14:\"fas-user-check\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:640;s:6:\"height\";i:512;s:4:\"path\";s:458:\"M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4zm323-128.4l-27.8-28.1c-4.6-4.7-12.1-4.7-16.8-.1l-104.8 104-45.5-45.8c-4.6-4.7-12.1-4.7-16.8-.1l-28.1 27.9c-4.7 4.6-4.7 12.1-.1 16.8l81.7 82.3c4.6 4.7 12.1 4.7 16.8.1l141.3-140.2c4.6-4.7 4.7-12.2.1-16.8z\";s:3:\"key\";s:14:\"fas-user-check\";}s:7:\"version\";s:6:\"5.15.3\";}s:11:\"fab-bitcoin\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"path\";s:1085:\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-141.651-35.33c4.937-32.999-20.191-50.739-54.55-62.573l11.146-44.702-27.213-6.781-10.851 43.524c-7.154-1.783-14.502-3.464-21.803-5.13l10.929-43.81-27.198-6.781-11.153 44.686c-5.922-1.349-11.735-2.682-17.377-4.084l.031-.14-37.53-9.37-7.239 29.062s20.191 4.627 19.765 4.913c11.022 2.751 13.014 10.044 12.68 15.825l-12.696 50.925c.76.194 1.744.473 2.829.907-.907-.225-1.876-.473-2.876-.713l-17.796 71.338c-1.349 3.348-4.767 8.37-12.471 6.464.271.395-19.78-4.937-19.78-4.937l-13.51 31.147 35.414 8.827c6.588 1.651 13.045 3.379 19.4 5.006l-11.262 45.213 27.182 6.781 11.153-44.733a1038.209 1038.209 0 0 0 21.687 5.627l-11.115 44.523 27.213 6.781 11.262-45.128c46.404 8.781 81.299 5.239 95.986-36.727 11.836-33.79-.589-53.281-25.004-65.991 17.78-4.098 31.174-15.792 34.747-39.949zm-62.177 87.179c-8.41 33.79-65.308 15.523-83.755 10.943l14.944-59.899c18.446 4.603 77.6 13.717 68.811 48.956zm8.417-87.667c-7.673 30.736-55.031 15.12-70.393 11.292l13.548-54.327c15.363 3.828 64.836 10.973 56.845 43.035z\";s:3:\"key\";s:11:\"fab-bitcoin\";}s:7:\"version\";s:6:\"5.15.3\";}s:15:\"fas-dollar-sign\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:288;s:6:\"height\";i:512;s:4:\"path\";s:601:\"M209.2 233.4l-108-31.6C88.7 198.2 80 186.5 80 173.5c0-16.3 13.2-29.5 29.5-29.5h66.3c12.2 0 24.2 3.7 34.2 10.5 6.1 4.1 14.3 3.1 19.5-2l34.8-34c7.1-6.9 6.1-18.4-1.8-24.5C238 74.8 207.4 64.1 176 64V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48h-2.5C45.8 64-5.4 118.7.5 183.6c4.2 46.1 39.4 83.6 83.8 96.6l102.5 30c12.5 3.7 21.2 15.3 21.2 28.3 0 16.3-13.2 29.5-29.5 29.5h-66.3C100 368 88 364.3 78 357.5c-6.1-4.1-14.3-3.1-19.5 2l-34.8 34c-7.1 6.9-6.1 18.4 1.8 24.5 24.5 19.2 55.1 29.9 86.5 30v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-48.2c46.6-.9 90.3-28.6 105.7-72.7 21.5-61.6-14.6-124.8-72.5-141.7z\";s:3:\"key\";s:15:\"fas-dollar-sign\";}s:7:\"version\";s:6:\"5.15.3\";}s:10:\"fas-wallet\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"path\";s:290:\"M461.2 128H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h384c8.84 0 16-7.16 16-16 0-26.51-21.49-48-48-48H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h397.2c28.02 0 50.8-21.53 50.8-48V176c0-26.47-22.78-48-50.8-48zM416 336c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z\";s:3:\"key\";s:10:\"fas-wallet\";}s:7:\"version\";s:6:\"5.15.3\";}s:8:\"fas-plus\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:448;s:6:\"height\";i:512;s:4:\"path\";s:239:\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\";s:3:\"key\";s:8:\"fas-plus\";}s:7:\"version\";s:6:\"5.15.3\";}s:9:\"fas-minus\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:448;s:6:\"height\";i:512;s:4:\"path\";s:116:\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\";s:3:\"key\";s:9:\"fas-minus\";}s:7:\"version\";s:6:\"5.15.3\";}s:8:\"fas-bars\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:448;s:6:\"height\";i:512;s:4:\"path\";s:341:\"M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z\";s:3:\"key\";s:8:\"fas-bars\";}s:7:\"version\";s:6:\"5.15.3\";}s:9:\"fas-times\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:352;s:6:\"height\";i:512;s:4:\"path\";s:415:\"M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z\";s:3:\"key\";s:9:\"fas-times\";}s:7:\"version\";s:6:\"5.15.3\";}s:14:\"fas-angle-left\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:256;s:6:\"height\";i:512;s:4:\"path\";s:188:\"M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z\";s:3:\"key\";s:14:\"fas-angle-left\";}s:7:\"version\";s:6:\"5.15.3\";}s:15:\"fas-angle-right\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:256;s:6:\"height\";i:512;s:4:\"path\";s:189:\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z\";s:3:\"key\";s:15:\"fas-angle-right\";}s:7:\"version\";s:6:\"5.15.3\";}s:14:\"fas-angle-down\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:320;s:6:\"height\";i:512;s:4:\"path\";s:190:\"M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z\";s:3:\"key\";s:14:\"fas-angle-down\";}s:7:\"version\";s:6:\"5.15.3\";}s:16:\"fas-check-circle\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"path\";s:356:\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\";s:3:\"key\";s:16:\"fas-check-circle\";}s:7:\"version\";s:6:\"5.15.3\";}s:13:\"fas-phone-alt\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"path\";s:264:\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\";s:3:\"key\";s:13:\"fas-phone-alt\";}s:7:\"version\";s:6:\"5.15.3\";}s:14:\"fab-facebook-f\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:320;s:6:\"height\";i:512;s:4:\"path\";s:172:\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\";s:3:\"key\";s:14:\"fab-facebook-f\";}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:11:\"fab-youtube\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:576;s:6:\"height\";i:512;s:4:\"path\";s:470:\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\";s:3:\"key\";s:11:\"fab-youtube\";}s:7:\"version\";s:6:\"5.15.3\";}s:11:\"fab-twitter\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"path\";s:791:\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\";s:3:\"key\";s:11:\"fab-twitter\";}s:7:\"version\";s:6:\"5.15.3\";}s:15:\"fab-linkedin-in\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:448;s:6:\"height\";i:512;s:4:\"path\";s:300:\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\";s:3:\"key\";s:15:\"fab-linkedin-in\";}s:7:\"version\";s:6:\"5.15.3\";}s:13:\"fa-angle-down\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:320;s:6:\"height\";i:512;s:4:\"path\";s:190:\"M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z\";s:3:\"key\";s:13:\"fa-angle-down\";}s:7:\"version\";s:6:\"5.15.3\";}s:14:\"fa-angle-right\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:256;s:6:\"height\";i:512;s:4:\"path\";s:189:\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z\";s:3:\"key\";s:14:\"fa-angle-right\";}s:7:\"version\";s:6:\"5.15.3\";}}}s:3:\"css\";a:1:{s:7:\"widgets\";a:23:{s:7:\"heading\";a:2:{s:7:\"content\";s:673:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:9:\"icon-list\";a:2:{s:7:\"content\";s:117:\"<link rel=\"stylesheet\" href=\"https://btpayments.io/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">\";s:7:\"version\";s:6:\"3.21.8\";}s:8:\"icon-box\";a:2:{s:7:\"content\";s:116:\"<link rel=\"stylesheet\" href=\"https://btpayments.io/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">\";s:7:\"version\";s:6:\"3.21.8\";}s:6:\"button\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:5:\"image\";a:2:{s:7:\"content\";s:269:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:12:\"jet-timeline\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:14:\"image-carousel\";a:2:{s:7:\"content\";s:555:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:9:\"accordion\";a:2:{s:7:\"content\";s:1744:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-accordion{text-align:start}.elementor-accordion .elementor-accordion-item{border:1px solid #d5d8dc}.elementor-accordion .elementor-accordion-item+.elementor-accordion-item{border-top:none}.elementor-accordion .elementor-tab-title{margin:0;padding:15px 20px;font-weight:700;line-height:1;cursor:pointer;outline:none}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{display:inline-block;width:1.5em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon svg{width:1em;height:1em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right{float:right;text-align:right}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-left{float:left;text-align:left}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-closed{display:block}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-opened,.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-closed{display:none}.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-opened{display:block}.elementor-accordion .elementor-tab-content{display:none;padding:15px 20px;border-top:1px solid #d5d8dc}@media (max-width:767px){.elementor-accordion .elementor-tab-title{padding:12px 15px}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{width:1.2em}.elementor-accordion .elementor-tab-content{padding:7px 15px}}.e-con-inner>.elementor-widget-accordion,.e-con>.elementor-widget-accordion{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:8:\"jet-logo\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:13:\"jet-mega-menu\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:11:\"text-editor\";a:2:{s:7:\"content\";s:719:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:22:\"jet-blog-smart-listing\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:25:\"jet-blog-posts-pagination\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:14:\"code-highlight\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.3\";}s:9:\"jet-table\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:8:\"jet-tabs\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:14:\"contact-form-7\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:9:\"shortcode\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:10:\"jet-button\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:18:\"jet-subscribe-form\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:15:\"jet-custom-menu\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:12:\"social-icons\";a:2:{s:7:\"content\";s:5051:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-threads{background-color:#000}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-x-twitter{background-color:#000}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:12:\"jet-nav-menu\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}}}}','auto'),
(21925,'elementor-custom-breakpoints-files','a:1:{s:17:\"custom-jet-blocks\";a:1:{s:4:\"time\";i:1730196226;}}','auto'),
(21926,'_elementor_global_css','a:7:{s:4:\"time\";i:1730196226;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'),
(24488,'um_cache_userdata_1','a:110:{s:2:\"ID\";i:1;s:10:\"user_login\";s:7:\"wangjun\";s:9:\"user_pass\";s:34:\"$P$BQsQfr0zyEUnC24CU0urhLXuPv/gGq1\";s:13:\"user_nicename\";s:7:\"wangjun\";s:10:\"user_email\";s:21:\"wangjun@bt-miners.com\";s:8:\"user_url\";s:30:\"http://btpayments.kinsta.cloud\";s:15:\"user_registered\";s:19:\"2024-05-27 06:52:31\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:7:\"wangjun\";s:13:\"administrator\";b:1;s:8:\"wp_roles\";s:13:\"administrator\";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: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:26:\"create_notes_elementor-pro\";b:1;s:24:\"edit_notes_elementor-pro\";b:1;s:26:\"delete_notes_elementor-pro\";b:1;s:24:\"read_notes_elementor-pro\";b:1;s:31:\"edit_others_notes_elementor-pro\";b:1;s:33:\"delete_others_notes_elementor-pro\";b:1;s:39:\"read_others_private_notes_elementor-pro\";b:1;s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;s:8:\"nickname\";s:7:\"wangjun\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:19:\"syntax_highlighting\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:6:\"locale\";s:0:\"\";s:18:\"show_welcome_panel\";s:1:\"0\";s:37:\"wp_dashboard_quick_press_last_post_id\";s:4:\"3062\";s:25:\"community-events-location\";s:35:\"a:1:{s:2:\"ip\";s:12:\"212.107.29.0\";}\";s:32:\"wp_elementor_connect_common_data\";s:623:\"a:6:{s:9:\"client_id\";s:32:\"xaWEdN0BKUhs63p4RwfTll3Li0yo22VL\";s:11:\"auth_secret\";s:32:\"6IEV5hpXHZEvAlUKA9lwDTos9zx4Qi2H\";s:12:\"access_token\";s:304:\"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI1NjI0MTE5IiwiYXVkIjoiaHR0cHM6Ly9idHBheW1lbnRzLmtpbnN0YS5jbG91ZC8iLCJjbGllbnRfaWQiOiJ4YVdFZE4wQktVaHM2M3A0UndmVGxsM0xpMHlvMjJWTCIsImNvbm5lY3RfdHlwZSI6ImFjdGl2YXRlIiwiaWF0IjoxNzE2OTU0MDE4LCJleHAiOjMxNzI2MTM5NjQxOH0.grwYwPipwdJ2pCB8jU0v0c68VziK4skGQia7QCI-gDs\";s:19:\"access_token_secret\";s:32:\"L14becnkJeXgxC6cvRI96FKNyTIR0ZrN\";s:10:\"token_type\";s:6:\"bearer\";s:4:\"user\";O:8:\"stdClass\":1:{s:5:\"email\";s:21:\"wangjun@bt-miners.com\";}}\";s:24:\"wp_persisted_preferences\";s:144:\"a:2:{s:14:\"core/edit-post\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2024-05-29T03:40:54.550Z\";}\";s:22:\"elementor_introduction\";s:185:\"a:5:{s:27:\"ai-get-started-announcement\";b:1;s:7:\"exit_to\";b:1;s:35:\"ai_promotion_introduction_container\";b:1;s:20:\"globals_introduction\";b:1;s:31:\"ai_promotion_introduction_media\";b:1;}\";s:14:\"account_status\";s:8:\"approved\";s:24:\"um_member_directory_data\";s:137:\"a:5:{s:14:\"account_status\";s:8:\"approved\";s:15:\"hide_in_members\";b:0;s:13:\"profile_photo\";b:0;s:11:\"cover_photo\";b:0;s:8:\"verified\";b:0;}\";s:35:\"um_user_profile_url_slug_user_login\";s:7:\"wangjun\";s:24:\"um_account_secure_fields\";s:340:\"a:4:{s:7:\"general\";a:4:{i:0;s:10:\"user_login\";i:1;s:10:\"first_name\";i:2;s:9:\"last_name\";i:3;s:10:\"user_email\";}s:8:\"password\";a:1:{i:0;s:13:\"user_password\";}s:7:\"privacy\";a:4:{i:0;s:15:\"profile_privacy\";i:1;s:15:\"profile_noindex\";i:2;s:15:\"hide_in_members\";i:3;s:18:\"um_show_last_login\";}s:6:\"delete\";a:1:{i:0;s:20:\"single_user_password\";}}\";s:14:\"_um_last_login\";s:19:\"2024-11-11 08:37:27\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"role\";s:13:\"administrator\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:18:\"can_access_wpadmin\";i:1;s:20:\"can_not_see_adminbar\";i:0;s:17:\"can_edit_everyone\";i:1;s:19:\"can_delete_everyone\";i:1;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:16:\"default_homepage\";i:1;s:11:\"after_login\";s:14:\"redirect_admin\";s:12:\"after_logout\";s:13:\"redirect_home\";s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:1;s:26:\"can_access_private_profile\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"super_admin\";i:1;}','off'),
(24932,'db_upgraded','','on'),
(24969,'_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'),
(25164,'can_compress_scripts','1','on'),
(25969,'um_cache_userdata_8','a:75:{s:2:\"ID\";i:8;s:10:\"user_login\";s:22:\"pylemexa@polkaroad.net\";s:9:\"user_pass\";s:34:\"$P$BKNQOiK.ANxXLLkkUhzP1yY4kRJmnK/\";s:13:\"user_nicename\";s:21:\"pylemexapolkaroad-net\";s:10:\"user_email\";s:22:\"pylemexa@polkaroad.net\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2024-08-14 09:07:27\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:22:\"pylemexa@polkaroad.net\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;s:8:\"nickname\";s:22:\"pylemexa@polkaroad.net\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:19:\"syntax_highlighting\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:6:\"locale\";s:0:\"\";s:25:\"synced_gravatar_hashed_id\";s:32:\"ffbe165964b9c7cf2b62fed6f72f3229\";s:24:\"um_member_directory_data\";s:137:\"a:5:{s:14:\"account_status\";s:8:\"rejected\";s:15:\"hide_in_members\";b:0;s:13:\"profile_photo\";b:0;s:11:\"cover_photo\";b:0;s:8:\"verified\";b:0;}\";s:9:\"submitted\";s:468:\"a:11:{s:17:\"checkbox_business\";a:1:{i:0;s:47:\"I confirm I have a registered legal US Business\";}s:23:\"checkbox_privacy_policy\";a:0:{}s:7:\"form_id\";s:4:\"2769\";s:10:\"um_request\";s:0:\"\";s:8:\"_wpnonce\";s:10:\"c62a4c6252\";s:16:\"_wp_http_referer\";s:10:\"/register/\";s:12:\"contact_name\";s:8:\"jkp rgtf\";s:19:\"legal_business_name\";s:4:\"adwa\";s:10:\"user_email\";s:22:\"pylemexa@polkaroad.net\";s:13:\"mobile_number\";s:11:\"09080712345\";s:10:\"user_login\";s:22:\"pylemexa@polkaroad.net\";}\";s:17:\"checkbox_business\";s:65:\"a:1:{i:0;s:47:\"I confirm I have a registered legal US Business\";}\";s:23:\"checkbox_privacy_policy\";s:6:\"a:0:{}\";s:7:\"form_id\";s:4:\"2769\";s:12:\"contact_name\";s:8:\"jkp rgtf\";s:19:\"legal_business_name\";s:4:\"adwa\";s:13:\"mobile_number\";s:11:\"09080712345\";s:42:\"um_email_as_username_pylemexapolkaroad-net\";s:22:\"pylemexa@polkaroad.net\";s:35:\"um_user_profile_url_slug_user_login\";s:21:\"pylemexapolkaroad-net\";s:14:\"account_status\";s:8:\"rejected\";s:19:\"account_status_name\";s:19:\"Membership Rejected\";s:4:\"role\";s:10:\"subscriber\";s:5:\"roles\";a:1:{i:0;s:10:\"subscriber\";}s:9:\"is_custom\";s:1:\"0\";s:8:\"priority\";i:0;s:18:\"can_access_wpadmin\";b:0;s:20:\"can_not_see_adminbar\";b:1;s:17:\"can_edit_everyone\";b:0;s:14:\"can_edit_roles\";s:0:\"\";s:19:\"can_delete_everyone\";b:0;s:16:\"can_delete_roles\";s:0:\"\";s:16:\"can_edit_profile\";b:1;s:18:\"can_delete_profile\";b:1;s:12:\"can_view_all\";b:1;s:14:\"can_view_roles\";s:0:\"\";s:24:\"can_make_private_profile\";b:0;s:26:\"can_access_private_profile\";b:0;s:15:\"profile_noindex\";s:0:\"\";s:16:\"default_homepage\";b:1;s:17:\"redirect_homepage\";s:0:\"\";s:6:\"status\";s:7:\"pending\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:16:\"auto_approve_url\";s:0:\"\";s:20:\"login_email_activate\";b:0;s:16:\"checkmail_action\";s:12:\"show_message\";s:17:\"checkmail_message\";s:147:\"Thank you for registering. Before you can login we need you to activate your account by clicking the activation link in the email we just sent you.\";s:13:\"checkmail_url\";s:0:\"\";s:18:\"url_email_activate\";s:0:\"\";s:14:\"pending_action\";s:12:\"show_message\";s:15:\"pending_message\";s:170:\"Thank you for applying for membership to our site. We will review your details and send you an email letting you know whether your application has been successful or not.\";s:11:\"pending_url\";s:0:\"\";s:11:\"after_login\";s:16:\"redirect_profile\";s:18:\"login_redirect_url\";s:0:\"\";s:12:\"after_logout\";s:13:\"redirect_home\";s:19:\"logout_redirect_url\";s:0:\"\";s:12:\"after_delete\";s:13:\"redirect_home\";s:19:\"delete_redirect_url\";s:0:\"\";s:11:\"super_admin\";i:0;}','off'),
(25970,'um_cache_userdata_2','a:66:{s:2:\"ID\";i:2;s:10:\"user_login\";s:5:\"admin\";s:9:\"user_pass\";s:34:\"$P$BA5iP2mjFy/esINUkA1.8ww7uNAbYY1\";s:13:\"user_nicename\";s:5:\"admin\";s:10:\"user_email\";s:33:\"livedemo-admin@templatemonster.me\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2024-05-30 08:39:58\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:5:\"admin\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;s:8:\"nickname\";s:5:\"admin\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:19:\"syntax_highlighting\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:6:\"locale\";s:0:\"\";s:24:\"um_member_directory_data\";s:137:\"a:5:{s:14:\"account_status\";s:8:\"rejected\";s:15:\"hide_in_members\";b:0;s:13:\"profile_photo\";b:0;s:11:\"cover_photo\";b:0;s:8:\"verified\";b:0;}\";s:35:\"um_user_profile_url_slug_user_login\";s:5:\"admin\";s:14:\"account_status\";s:8:\"rejected\";s:19:\"account_status_name\";s:19:\"Membership Rejected\";s:4:\"role\";s:10:\"subscriber\";s:5:\"roles\";a:1:{i:0;s:10:\"subscriber\";}s:9:\"is_custom\";s:1:\"0\";s:8:\"priority\";i:0;s:18:\"can_access_wpadmin\";b:0;s:20:\"can_not_see_adminbar\";b:1;s:17:\"can_edit_everyone\";b:0;s:14:\"can_edit_roles\";s:0:\"\";s:19:\"can_delete_everyone\";b:0;s:16:\"can_delete_roles\";s:0:\"\";s:16:\"can_edit_profile\";b:1;s:18:\"can_delete_profile\";b:1;s:12:\"can_view_all\";b:1;s:14:\"can_view_roles\";s:0:\"\";s:24:\"can_make_private_profile\";b:0;s:26:\"can_access_private_profile\";b:0;s:15:\"profile_noindex\";s:0:\"\";s:16:\"default_homepage\";b:1;s:17:\"redirect_homepage\";s:0:\"\";s:6:\"status\";s:7:\"pending\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:16:\"auto_approve_url\";s:0:\"\";s:20:\"login_email_activate\";b:0;s:16:\"checkmail_action\";s:12:\"show_message\";s:17:\"checkmail_message\";s:147:\"Thank you for registering. Before you can login we need you to activate your account by clicking the activation link in the email we just sent you.\";s:13:\"checkmail_url\";s:0:\"\";s:18:\"url_email_activate\";s:0:\"\";s:14:\"pending_action\";s:12:\"show_message\";s:15:\"pending_message\";s:170:\"Thank you for applying for membership to our site. We will review your details and send you an email letting you know whether your application has been successful or not.\";s:11:\"pending_url\";s:0:\"\";s:11:\"after_login\";s:16:\"redirect_profile\";s:18:\"login_redirect_url\";s:0:\"\";s:12:\"after_logout\";s:13:\"redirect_home\";s:19:\"logout_redirect_url\";s:0:\"\";s:12:\"after_delete\";s:13:\"redirect_home\";s:19:\"delete_redirect_url\";s:0:\"\";s:11:\"super_admin\";i:0;}','off'),
(25976,'adminhash','a:2:{s:4:\"hash\";s:32:\"91837a00d3ea5b916a761291a0146b78\";s:8:\"newemail\";s:21:\"superod@bt-miners.com\";}','off'),
(26065,'um_cache_userdata_9','a:109:{s:2:\"ID\";i:9;s:10:\"user_login\";s:7:\"superod\";s:9:\"user_pass\";s:34:\"$P$BN5QHiJvCZ4EcFs5RUKPhZ6VYPPw9/1\";s:13:\"user_nicename\";s:7:\"superod\";s:10:\"user_email\";s:21:\"superod@bt-miners.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2024-11-11 08:38:07\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:7:\"superod\";s:13:\"administrator\";b:1;s:8:\"wp_roles\";s:13:\"administrator\";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: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:26:\"create_notes_elementor-pro\";b:1;s:24:\"edit_notes_elementor-pro\";b:1;s:26:\"delete_notes_elementor-pro\";b:1;s:24:\"read_notes_elementor-pro\";b:1;s:31:\"edit_others_notes_elementor-pro\";b:1;s:33:\"delete_others_notes_elementor-pro\";b:1;s:39:\"read_others_private_notes_elementor-pro\";b:1;s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;s:8:\"nickname\";s:7:\"superod\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:19:\"syntax_highlighting\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:6:\"locale\";s:5:\"zh_CN\";s:24:\"um_member_directory_data\";s:137:\"a:5:{s:14:\"account_status\";s:8:\"approved\";s:15:\"hide_in_members\";b:0;s:13:\"profile_photo\";b:0;s:11:\"cover_photo\";b:0;s:8:\"verified\";b:0;}\";s:35:\"um_user_profile_url_slug_user_login\";s:7:\"superod\";s:9:\"full_name\";s:0:\"\";s:14:\"account_status\";s:8:\"approved\";s:25:\"synced_gravatar_hashed_id\";s:32:\"db5613a8ca012cd2bc22e45221da17cb\";s:14:\"_um_last_login\";s:19:\"2024-11-18 08:06:24\";s:37:\"wp_dashboard_quick_press_last_post_id\";s:4:\"3105\";s:25:\"community-events-location\";s:34:\"a:1:{s:2:\"ip\";s:11:\"121.35.47.0\";}\";s:24:\"wp_persisted_preferences\";s:291:\"a:4:{s:4:\"core\";a:1:{s:26:\"isComplementaryAreaVisible\";b:1;}s:14:\"core/edit-post\";a:2:{s:12:\"welcomeGuide\";b:0;s:23:\"metaBoxesMainOpenHeight\";i:424;}s:9:\"_modified\";s:24:\"2024-11-18T07:07:09.173Z\";s:17:\"core/edit-widgets\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}}\";s:22:\"elementor_introduction\";s:185:\"a:5:{s:27:\"ai-get-started-announcement\";b:1;s:16:\"favorites-notice\";b:1;s:7:\"exit_to\";b:1;s:34:\"ai_promotion_introduction_textarea\";b:1;s:36:\"ai_promotion_introduction_media-edit\";b:1;}\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"role\";s:13:\"administrator\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:18:\"can_access_wpadmin\";i:1;s:20:\"can_not_see_adminbar\";i:0;s:17:\"can_edit_everyone\";i:1;s:19:\"can_delete_everyone\";i:1;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:16:\"default_homepage\";i:1;s:11:\"after_login\";s:14:\"redirect_admin\";s:12:\"after_logout\";s:13:\"redirect_home\";s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:1;s:26:\"can_access_private_profile\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"super_admin\";i:1;}','off'),
(26141,'widget_monsterinsights-popular-posts-widget','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(26142,'monsterinsights_usage_tracking_config','a:6:{s:3:\"day\";i:2;s:4:\"hour\";i:11;s:6:\"minute\";i:28;s:6:\"second\";i:53;s:6:\"offset\";i:214133;s:8:\"initsend\";i:1732620533;}','auto'),
(26143,'monsterinsights_settings','a:46:{s:22:\"enable_affiliate_links\";b:1;s:15:\"affiliate_links\";a:2:{i:0;a:2:{s:4:\"path\";s:4:\"/go/\";s:5:\"label\";s:9:\"affiliate\";}i:1;a:2:{s:4:\"path\";s:11:\"/recommend/\";s:5:\"label\";s:9:\"affiliate\";}}s:12:\"demographics\";i:1;s:12:\"ignore_users\";a:2:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";}s:19:\"dashboards_disabled\";i:0;s:13:\"anonymize_ips\";i:0;s:19:\"extensions_of_files\";s:34:\"doc,pdf,ppt,zip,xls,docx,pptx,xlsx\";s:18:\"subdomain_tracking\";s:0:\"\";s:16:\"link_attribution\";b:1;s:16:\"tag_links_in_rss\";b:1;s:12:\"allow_anchor\";i:0;s:16:\"add_allow_linker\";i:0;s:13:\"save_settings\";a:1:{i:0;s:13:\"administrator\";}s:12:\"view_reports\";a:2:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";}s:11:\"events_mode\";s:2:\"js\";s:13:\"tracking_mode\";s:4:\"gtag\";s:15:\"email_summaries\";s:2:\"on\";s:23:\"summaries_html_template\";s:3:\"yes\";s:25:\"summaries_email_addresses\";a:1:{i:0;a:1:{s:5:\"email\";s:21:\"wangjun@bt-miners.com\";}}s:31:\"exception_alert_email_addresses\";a:1:{i:0;a:1:{s:5:\"email\";s:21:\"wangjun@bt-miners.com\";}}s:17:\"automatic_updates\";s:3:\"all\";s:14:\"anonymous_data\";i:0;s:18:\"verified_automatic\";i:0;s:26:\"popular_posts_inline_theme\";s:5:\"alpha\";s:26:\"popular_posts_widget_theme\";s:5:\"alpha\";s:28:\"popular_posts_products_theme\";s:5:\"alpha\";s:30:\"popular_posts_inline_placement\";s:6:\"manual\";s:34:\"popular_posts_widget_theme_columns\";s:1:\"2\";s:36:\"popular_posts_products_theme_columns\";s:1:\"2\";s:26:\"popular_posts_widget_count\";s:1:\"4\";s:28:\"popular_posts_products_count\";s:1:\"4\";s:38:\"popular_posts_widget_theme_meta_author\";s:2:\"on\";s:36:\"popular_posts_widget_theme_meta_date\";s:2:\"on\";s:40:\"popular_posts_widget_theme_meta_comments\";s:2:\"on\";s:39:\"popular_posts_products_theme_meta_price\";s:2:\"on\";s:40:\"popular_posts_products_theme_meta_rating\";s:2:\"on\";s:39:\"popular_posts_products_theme_meta_image\";s:2:\"on\";s:32:\"popular_posts_inline_after_count\";s:3:\"150\";s:36:\"popular_posts_inline_multiple_number\";s:1:\"3\";s:38:\"popular_posts_inline_multiple_distance\";s:3:\"250\";s:39:\"popular_posts_inline_multiple_min_words\";s:3:\"100\";s:31:\"popular_posts_inline_post_types\";a:1:{i:0;s:4:\"post\";}s:31:\"popular_posts_widget_post_types\";a:1:{i:0;s:4:\"post\";}s:19:\"verified_appearance\";s:5:\"light\";s:17:\"verified_position\";s:6:\"center\";s:9:\"site_type\";s:8:\"business\";}','auto'),
(26144,'monsterinsights_over_time','a:6:{s:17:\"installed_version\";s:5:\"9.2.2\";s:14:\"installed_date\";i:1731920036;s:13:\"installed_pro\";b:0;s:14:\"installed_lite\";i:1731920036;s:19:\"connected_date_lite\";i:1731920162;s:14:\"connected_date\";i:1732011496;}','off'),
(26145,'monsterinsights_db_version','7.4.0','auto'),
(26146,'monsterinsights_current_version','9.2.2','auto'),
(26148,'monsterinsights_sitenotes_installed','1731920036','auto'),
(26149,'monsterinsights_feedback_tracked_features','a:0:{}','auto'),
(26150,'monsterinsights_review','a:2:{s:4:\"time\";i:1731920037;s:9:\"dismissed\";b:0;}','auto'),
(26152,'monsterinsights_notifications_run','a:24:{s:50:\"monsterinsights_notification_install_user_feedback\";i:1740360883;s:37:\"monsterinsights_notification_visitors\";i:1740360896;s:37:\"monsterinsights_notification_audience\";i:1740360902;s:55:\"monsterinsights_notification_mobile_device_high_traffic\";i:1740360902;s:42:\"monsterinsights_notification_mobile_device\";i:1740360904;s:43:\"monsterinsights_notification_upgrade_to_pro\";i:1740360904;s:56:\"monsterinsights_notification_upgrade_to_pro_high_traffic\";i:1740620372;s:40:\"monsterinsights_notification_bounce_rate\";i:1740620372;s:47:\"monsterinsights_notification_returning_visitors\";i:1740620372;s:45:\"monsterinsights_notification_traffic_dropping\";i:1731920040;s:64:\"monsterinsights_notification_upgrade_for_popular_posts_templates\";i:1733708352;s:57:\"monsterinsights_notification_upgrade_for_events_reporting\";i:1733708383;s:62:\"monsterinsights_notification_upgrade_for_search_console_report\";i:1731920040;s:56:\"monsterinsights_notification_upgrade_for_form_conversion\";i:1733708427;s:56:\"monsterinsights_notification_upgrade_for_email_summaries\";i:1731920040;s:58:\"monsterinsights_notification_upgrade_for_custom_dimensions\";i:1733708484;s:39:\"monsterinsights_notification_eu_traffic\";i:1731920040;s:56:\"monsterinsights_notification_to_add_more_file_extensions\";i:1733708647;s:53:\"monsterinsights_notification_to_setup_affiliate_links\";i:1731920040;s:46:\"monsterinsights_notification_headline_analyzer\";i:1731920040;s:49:\"monsterinsights_notification_install_optinmonster\";i:1731920040;s:43:\"monsterinsights_notification_install_aioseo\";i:1731920040;s:44:\"monsterinsights_notification_install_wpforms\";i:1731920040;s:43:\"monsterinsights_notification_multiple_gtags\";i:1731920040;}','off'),
(26153,'monsterinsights_notifications','a:5:{s:6:\"update\";i:1740620366;s:4:\"feed\";a:1:{i:0;a:7:{s:5:\"title\";s:76:\"[MonsterInsights 9.2] Introducing the Country Report + New Custom Dimensions\";s:7:\"content\";s:341:\"Wish you could drill down into regions and countries from your website? We’ve added a new Country report to do just that! Now, you can toggle each country open to drill down to the most popular regions. We’ve also added new custom dimensions for SEOPress and Rank Math. Upgrade to Pro now to track your focus keywords from those plugins!\";s:4:\"type\";a:1:{i:0;s:4:\"lite\";}s:2:\"id\";i:234;s:4:\"btns\";a:2:{s:4:\"main\";a:2:{s:3:\"url\";s:208:\"https://www.monsterinsights.com/introducing-a-new-countries-report-new-custom-dimensions-more/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=9-2\";s:4:\"text\";s:10:\"Learn More\";}s:3:\"alt\";a:2:{s:3:\"url\";s:150:\"https://www.monsterinsights.com/lite?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=9-2\";s:4:\"text\";s:14:\"Upgrade to Pro\";}}s:5:\"start\";s:19:\"2024-10-30 00:00:00\";s:3:\"end\";s:19:\"2025-04-30 00:00:00\";}}s:6:\"events\";a:10:{i:0;a:10:{s:2:\"id\";s:59:\"monsterinsights_notification_install_user_feedback_20250224\";s:4:\"icon\";s:9:\"lightning\";s:5:\"title\";s:36:\"What Are Your Users Really Thinking?\";s:7:\"content\";s:255:\"MonsterInsights tells you WHAT your website visitors are doing on your website, but our latest plugin, UserFeedback, tells you WHY. Use its short surveys to make more money, increase engagement, and grow your business faster with candid customer feedback.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:25:\"cta_install_user_feedback\";a:2:{s:3:\"url\";s:69:\"https://btpayments.io/wp-admin/admin.php?page=userfeedback_onboarding\";s:4:\"text\";s:18:\"Install & Activate\";}}s:5:\"start\";s:18:\"02/24/2025 1:34 am\";s:3:\"end\";s:10:\"03/24/2025\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:1;}i:1;a:7:{s:2:\"id\";s:43:\"monsterinsights_property_different_timezone\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:5:\"start\";s:19:\"2024-11-18 08:56:02\";s:3:\"end\";s:10:\"2024-12-18\";s:5:\"title\";s:48:\"Website & Google Analytics Timezone Mismatch\";s:7:\"content\";s:305:\"We detected your Google Analytics property is set to a different timezone than your website. This may slightly impact your stats, especially when comparing day over day performance. You may want to adjust your website's time zone <a href=\"https://btpayments.io/wp-admin/options-general.php\">here</a>.\";s:8:\"priority\";i:1;}i:2;a:10:{s:2:\"id\";s:56:\"monsterinsights_notification_returning_visitors_20250227\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:45:\"Only -3% of Your Visitors Return to Your Site\";s:7:\"content\";s:329:\"Your site has received a low number of returning users over the past 30 days. Try a tool like <a href=\"https://www.monsterinsights.com/optinmonster-review/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=9.3.0\" target=\"_blank\">OptinMonster</a> to increase engagement.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:10:\"learn_more\";a:3:{s:3:\"url\";s:168:\"https://www.monsterinsights.com/optinmonster-review/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=9.3.0\";s:4:\"text\";s:10:\"Learn More\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"02/27/2025 1:39 am\";s:3:\"end\";s:10:\"03/27/2025\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:3;a:10:{s:2:\"id\";s:46:\"monsterinsights_notification_visitors_20250224\";s:4:\"icon\";s:9:\"lightning\";s:5:\"title\";s:36:\"See how 72 Visitors Found Your Site!\";s:7:\"content\";s:123:\"Your website has been visited by 72 visitors in the past 30 days. Click the button below to view the full analytics report.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:11:\"view_report\";a:2:{s:3:\"url\";s:182:\"https://btpayments.io/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=monsterinsights-report-overview&monsterinsights-highlight=monsterinsights-report-overview\";s:4:\"text\";s:11:\"View Report\";}}s:5:\"start\";s:18:\"02/24/2025 1:34 am\";s:3:\"end\";s:10:\"03/24/2025\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:4;a:10:{s:2:\"id\";s:65:\"monsterinsights_notification_to_add_more_file_extensions_20241209\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:28:\"Track Your Website Downloads\";s:7:\"content\";s:798:\"By default, MonsterInsights automatically tracks downloads of the following file extensions: doc, pdf, ppt, zip, xls, docx, pptx, and xlsx. You can easily add or remove extensions from that list in the <a href=\"https://btpayments.io/wp-admin/admin.php?page=monsterinsights_settings&monsterinsights-scroll=monsterinsights-settings-block-file-downloads&monsterinsights-highlight=monsterinsights-settings-block-file-downloads#/engagement\">Engagement settings</a> of MonsterInsights.<br><br> You can view your Top Downloads report directly in the MonsterInsights <a href=\"https://btpayments.io/wp-admin/admin.php?page=monsterinsights_reports&monsterinsights-scroll=monsterinsights-report-download-links&monsterinsights-highlight=monsterinsights-report-download-links#/publishers\">Publishers report</a>.\";s:4:\"type\";a:5:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:6:\"master\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";}s:4:\"btns\";a:1:{s:24:\"add_more_file_extensions\";a:2:{s:3:\"url\";s:223:\"https://btpayments.io/wp-admin/admin.php?page=monsterinsights_settings&monsterinsights-scroll=monsterinsights-settings-block-file-downloads&monsterinsights-highlight=monsterinsights-settings-block-file-downloads#/engagement\";s:4:\"text\";s:19:\"Add File Extensions\";}}s:5:\"start\";s:18:\"12/09/2024 1:44 am\";s:3:\"end\";s:10:\"12/27/2024\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:2;}i:5;a:10:{s:2:\"id\";s:52:\"monsterinsights_notification_upgrade_to_pro_20250224\";s:4:\"icon\";s:4:\"star\";s:5:\"title\";s:45:\"Upgrade to Unlock Advanced Tracking & Reports\";s:7:\"content\";s:197:\"By upgrading to MonsterInsights Pro you get access to additional reports right in your WordPress dashboard and advanced tracking features like eCommerce, Custom Dimensions, Forms tracking and more!\";s:4:\"type\";a:1:{i:0;s:4:\"lite\";}s:4:\"btns\";a:1:{s:14:\"upgrade_to_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=9.3.0\";s:4:\"text\";s:14:\"Upgrade to Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"02/24/2025 1:35 am\";s:3:\"end\";s:10:\"04/03/2025\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:6;a:10:{s:2:\"id\";s:67:\"monsterinsights_notification_upgrade_for_custom_dimensions_20241209\";s:4:\"icon\";s:4:\"star\";s:5:\"title\";s:30:\"Upgrade to MonsterInsights Pro\";s:7:\"content\";s:177:\"Upgrade to enable Custom Dimensions. Track logged in users, determine when is your best time to post, measure if your SEO strategy is working, and find your most popular author.\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=9.2.2\";s:4:\"text\";s:23:\"Get MonsterInsights Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"12/09/2024 1:41 am\";s:3:\"end\";s:10:\"12/27/2024\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:7;a:10:{s:2:\"id\";s:65:\"monsterinsights_notification_upgrade_for_form_conversion_20241209\";s:4:\"icon\";s:7:\"default\";s:5:\"title\";s:29:\"Easily Track Form Conversions\";s:7:\"content\";s:263:\"Track your website\'s form conversion rates by upgrading to <a href=\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=9.2.2\" target=\"_blank\">MonsterInsights Pro</a>.\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=9.2.2\";s:4:\"text\";s:11:\"Upgrade Now\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"12/09/2024 1:40 am\";s:3:\"end\";s:10:\"12/27/2024\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:8;a:10:{s:2:\"id\";s:66:\"monsterinsights_notification_upgrade_for_events_reporting_20241209\";s:4:\"icon\";s:4:\"star\";s:5:\"title\";s:30:\"Upgrade to MonsterInsights Pro\";s:7:\"content\";s:105:\"Upgrade to MonsterInsights Pro to see which content and events your visitors are performing in real time.\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=9.2.2\";s:4:\"text\";s:23:\"Get MonsterInsights Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"12/09/2024 1:39 am\";s:3:\"end\";s:10:\"12/27/2024\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}i:9;a:10:{s:2:\"id\";s:73:\"monsterinsights_notification_upgrade_for_popular_posts_templates_20241209\";s:4:\"icon\";s:4:\"star\";s:5:\"title\";s:30:\"Upgrade to MonsterInsights Pro\";s:7:\"content\";s:125:\"Upgrade MonsterInsights Pro and use up to 20+ Popular Post templates to help improve engagement and interaction on your site.\";s:4:\"type\";a:3:{i:0;s:5:\"basic\";i:1;s:4:\"lite\";i:2;s:4:\"plus\";}s:4:\"btns\";a:1:{s:23:\"get_monsterinsights_pro\";a:3:{s:3:\"url\";s:153:\"https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=monsterinsights-notifications-sidebar&utm_campaign=notifications&utm_content=9.2.2\";s:4:\"text\";s:23:\"Get MonsterInsights Pro\";s:11:\"is_external\";b:1;}}s:5:\"start\";s:18:\"12/09/2024 1:39 am\";s:3:\"end\";s:10:\"12/27/2024\";s:8:\"category\";s:7:\"insight\";s:8:\"priority\";i:3;}}s:9:\"dismissed\";a:0:{}s:12:\"feed_fetched\";b:1;}','off'),
(26160,'monsterinsights_site_tt','0a8f963d7a885836b9895fad14a8bca8f475848dd493055b7ddffcb525b98af740f123ed200113d3cc1b6a1b52c3d21ec2335c9580bc99fbaf87934627a4b68a','auto'),
(26161,'monsterinsights_site_profile','a:11:{s:3:\"key\";s:128:\"847df032c0cd4267804b3bbdcbf0d906c61059cdc1a597d70379ab7a37c240b73e022f3bfbee3725a4e85e04421e26417c311f805c7aea80bb906f92fc3aedd5\";s:5:\"token\";s:128:\"37f57d4e754eaee3727cff42eaab83de0c6e74c7757c4849f903b4ad3d638f0b4ac379ce9473e4174d817f20f5b3604e404f314d7040f9100b48112130492bd8\";s:8:\"viewname\";s:12:\"G-SKJCH9HY47\";s:1:\"a\";s:9:\"332819578\";s:1:\"w\";s:9:\"462923180\";s:1:\"p\";s:10:\"9954289114\";s:7:\"siteurl\";s:21:\"https://btpayments.io\";s:6:\"neturl\";s:31:\"https://btpayments.io/wp-admin/\";s:27:\"measurement_protocol_secret\";s:22:\"ts9ifLhrSo6PILoG7fBKKw\";s:2:\"v4\";s:12:\"G-SKJCH9HY47\";s:15:\"connection_time\";i:1731920162;}','auto'),
(26162,'monsterinsights_frontend_tracking_notice_viewed','1','auto'),
(26165,'monsterinsights_report_data_overview','a:3:{s:7:\"expires\";i:1740701103;s:1:\"p\";s:10:\"9954289114\";s:4:\"data\";a:9:{s:13:\"overviewgraph\";a:7:{s:5:\"count\";i:30;s:5:\"start\";i:1738022400;s:3:\"end\";i:1740528000;s:8:\"sessions\";a:5:{s:3:\"min\";i:0;s:3:\"max\";s:1:\"8\";s:10:\"datapoints\";a:30:{i:0;s:1:\"3\";i:1;s:1:\"1\";i:2;s:1:\"2\";i:3;s:1:\"1\";i:4;i:0;i:5;i:0;i:6;i:0;i:7;s:1:\"3\";i:8;s:1:\"5\";i:9;s:1:\"6\";i:10;s:1:\"2\";i:11;s:1:\"1\";i:12;s:1:\"1\";i:13;i:0;i:14;s:1:\"4\";i:15;i:0;i:16;s:1:\"4\";i:17;s:1:\"8\";i:18;s:1:\"4\";i:19;s:1:\"1\";i:20;i:0;i:21;i:0;i:22;s:1:\"3\";i:23;s:1:\"2\";i:24;s:1:\"5\";i:25;s:1:\"4\";i:26;i:0;i:27;s:1:\"2\";i:28;i:0;i:29;i:0;}s:11:\"trendpoints\";a:29:{i:0;i:-67;i:1;i:100;i:2;i:-50;i:3;i:-100;i:4;i:0;i:5;i:0;i:6;i:100;i:7;i:67;i:8;i:20;i:9;i:-67;i:10;i:-50;i:11;i:0;i:12;i:-100;i:13;i:100;i:14;i:-100;i:15;i:100;i:16;i:100;i:17;i:-50;i:18;i:-75;i:19;i:-100;i:20;i:0;i:21;i:100;i:22;i:-34;i:23;i:150;i:24;i:-20;i:25;i:-100;i:26;i:100;i:27;i:-100;i:28;i:0;}s:5:\"total\";s:2:\"62\";}s:9:\"pageviews\";a:5:{s:3:\"min\";i:0;s:3:\"max\";s:2:\"40\";s:10:\"datapoints\";a:30:{i:0;s:1:\"4\";i:1;s:1:\"1\";i:2;s:1:\"2\";i:3;s:1:\"2\";i:4;i:0;i:5;i:0;i:6;i:0;i:7;s:1:\"3\";i:8;s:2:\"30\";i:9;s:2:\"40\";i:10;s:1:\"2\";i:11;s:1:\"1\";i:12;s:1:\"8\";i:13;i:0;i:14;s:1:\"4\";i:15;i:0;i:16;s:2:\"14\";i:17;s:2:\"17\";i:18;s:1:\"4\";i:19;s:1:\"2\";i:20;i:0;i:21;i:0;i:22;s:1:\"3\";i:23;s:1:\"2\";i:24;s:2:\"17\";i:25;s:2:\"28\";i:26;i:0;i:27;s:1:\"3\";i:28;i:0;i:29;i:0;}s:11:\"trendpoints\";a:29:{i:0;i:-75;i:1;i:100;i:2;i:0;i:3;i:-100;i:4;i:0;i:5;i:0;i:6;i:100;i:7;i:900;i:8;i:34;i:9;i:-95;i:10;i:-50;i:11;i:700;i:12;i:-100;i:13;i:100;i:14;i:-100;i:15;i:100;i:16;i:22;i:17;i:-77;i:18;i:-50;i:19;i:-100;i:20;i:0;i:21;i:100;i:22;i:-34;i:23;i:750;i:24;i:65;i:25;i:-100;i:26;i:100;i:27;i:-100;i:28;i:0;}s:5:\"total\";s:3:\"187\";}s:6:\"labels\";a:30:{i:0;s:6:\"28 Jan\";i:1;s:6:\"29 Jan\";i:2;s:6:\"30 Jan\";i:3;s:6:\"31 Jan\";i:4;s:5:\"1 Feb\";i:5;s:5:\"2 Feb\";i:6;s:5:\"3 Feb\";i:7;s:5:\"4 Feb\";i:8;s:5:\"5 Feb\";i:9;s:5:\"6 Feb\";i:10;s:5:\"7 Feb\";i:11;s:5:\"8 Feb\";i:12;s:5:\"9 Feb\";i:13;s:6:\"10 Feb\";i:14;s:6:\"11 Feb\";i:15;s:6:\"12 Feb\";i:16;s:6:\"13 Feb\";i:17;s:6:\"14 Feb\";i:18;s:6:\"15 Feb\";i:19;s:6:\"16 Feb\";i:20;s:6:\"17 Feb\";i:21;s:6:\"18 Feb\";i:22;s:6:\"19 Feb\";i:23;s:6:\"20 Feb\";i:24;s:6:\"21 Feb\";i:25;s:6:\"22 Feb\";i:26;s:6:\"23 Feb\";i:27;s:6:\"24 Feb\";i:28;s:6:\"25 Feb\";i:29;s:6:\"26 Feb\";}s:10:\"timestamps\";a:30:{i:0;i:1738022400;i:1;i:1738108800;i:2;i:1738195200;i:3;i:1738281600;i:4;i:1738368000;i:5;i:1738454400;i:6;i:1738540800;i:7;i:1738627200;i:8;i:1738713600;i:9;i:1738800000;i:10;i:1738886400;i:11;i:1738972800;i:12;i:1739059200;i:13;i:1739145600;i:14;i:1739232000;i:15;i:1739318400;i:16;i:1739404800;i:17;i:1739491200;i:18;i:1739577600;i:19;i:1739664000;i:20;i:1739750400;i:21;i:1739836800;i:22;i:1739923200;i:23;i:1740009600;i:24;i:1740096000;i:25;i:1740182400;i:26;i:1740268800;i:27;i:1740355200;i:28;i:1740441600;i:29;i:1740528000;}}s:7:\"infobox\";a:10:{s:5:\"range\";i:30;s:7:\"current\";a:3:{s:7:\"endDate\";s:10:\"2025-02-26\";s:4:\"name\";N;s:9:\"startDate\";s:10:\"2025-01-28\";}s:8:\"previous\";a:3:{s:7:\"endDate\";s:10:\"2025-01-27\";s:4:\"name\";N;s:9:\"startDate\";s:10:\"2024-12-29\";}s:8:\"sessions\";a:2:{s:5:\"value\";s:2:\"62\";s:4:\"prev\";i:-2;}s:9:\"pageviews\";a:2:{s:5:\"value\";s:3:\"187\";s:4:\"prev\";i:2;}s:10:\"totalusers\";a:2:{s:5:\"value\";s:2:\"43\";s:4:\"prev\";i:-7;}s:8:\"duration\";a:2:{s:5:\"value\";s:3:\"33s\";s:4:\"prev\";i:85;}s:5:\"users\";a:2:{s:5:\"value\";s:18:\"102.32558139534885\";s:4:\"prev\";i:5;}s:9:\"new_users\";a:2:{s:5:\"value\";s:2:\"44\";s:4:\"prev\";i:-3;}s:11:\"bounce_rate\";a:2:{s:5:\"value\";s:5:\"51.6%\";s:4:\"prev\";i:-8;}}s:11:\"newvsreturn\";a:2:{s:3:\"new\";i:103;s:9:\"returning\";i:-3;}s:7:\"devices\";a:2:{s:7:\"desktop\";i:90;s:6:\"mobile\";i:10;}s:9:\"countries\";a:10:{i:0;a:2:{s:3:\"iso\";s:2:\"US\";s:8:\"sessions\";s:2:\"19\";}i:1;a:2:{s:3:\"iso\";s:2:\"SG\";s:8:\"sessions\";s:1:\"8\";}i:2;a:2:{s:3:\"iso\";s:2:\"DE\";s:8:\"sessions\";s:1:\"7\";}i:3;a:2:{s:3:\"iso\";s:2:\"RO\";s:8:\"sessions\";s:1:\"7\";}i:4;a:2:{s:3:\"iso\";s:2:\"GR\";s:8:\"sessions\";s:1:\"4\";}i:5;a:2:{s:3:\"iso\";s:2:\"LT\";s:8:\"sessions\";s:1:\"3\";}i:6;a:2:{s:3:\"iso\";s:2:\"TW\";s:8:\"sessions\";s:1:\"3\";}i:7;a:2:{s:3:\"iso\";s:2:\"CA\";s:8:\"sessions\";s:1:\"2\";}i:8;a:2:{s:3:\"iso\";s:2:\"CN\";s:8:\"sessions\";s:1:\"1\";}i:9;a:2:{s:3:\"iso\";s:2:\"PL\";s:8:\"sessions\";i:0;}}s:9:\"referrals\";a:0:{}s:8:\"toppages\";a:42:{i:0;a:4:{s:3:\"url\";s:1:\"/\";s:5:\"title\";s:10:\"BTPayments\";s:8:\"hostname\";s:13:\"btpayments.io\";s:8:\"sessions\";s:2:\"46\";}i:1;a:4:{s:3:\"url\";s:13:\"/auth/sign-in\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:20:\"portal.btpayments.io\";s:8:\"sessions\";s:2:\"32\";}i:2;a:4:{s:3:\"url\";s:13:\"/auth/sign-in\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:19:\"admin.btpayments.io\";s:8:\"sessions\";s:2:\"19\";}i:3;a:4:{s:3:\"url\";s:9:\"/overview\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:20:\"portal.btpayments.io\";s:8:\"sessions\";s:2:\"13\";}i:4;a:4:{s:3:\"url\";s:9:\"/overview\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:19:\"admin.btpayments.io\";s:8:\"sessions\";s:2:\"12\";}i:5;a:4:{s:3:\"url\";s:9:\"/payments\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:19:\"admin.btpayments.io\";s:8:\"sessions\";s:2:\"12\";}i:6;a:4:{s:3:\"url\";s:13:\"/auth/sign-up\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:20:\"portal.btpayments.io\";s:8:\"sessions\";s:2:\"10\";}i:7;a:4:{s:3:\"url\";s:9:\"/payments\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:20:\"portal.btpayments.io\";s:8:\"sessions\";s:1:\"6\";}i:8;a:4:{s:3:\"url\";s:8:\"/balance\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:20:\"portal.btpayments.io\";s:8:\"sessions\";s:1:\"4\";}i:9;a:4:{s:3:\"url\";s:10:\"/merchants\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:19:\"admin.btpayments.io\";s:8:\"sessions\";s:1:\"4\";}i:10;a:4:{s:3:\"url\";s:10:\"/merchants\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:20:\"portal.btpayments.io\";s:8:\"sessions\";s:1:\"4\";}i:11;a:4:{s:3:\"url\";s:16:\"/payments/create\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:20:\"portal.btpayments.io\";s:8:\"sessions\";s:1:\"4\";}i:12;a:4:{s:3:\"url\";s:6:\"/users\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:19:\"admin.btpayments.io\";s:8:\"sessions\";s:1:\"3\";}i:13;a:4:{s:3:\"url\";s:10:\"/contacts/\";s:5:\"title\";s:23:\"Contacts – BTPayments\";s:8:\"hostname\";s:13:\"btpayments.io\";s:8:\"sessions\";s:1:\"2\";}i:14;a:4:{s:3:\"url\";s:36:\"/payments/01JK9SQD5YRFNDDMPZ0ZHSV85R\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:19:\"admin.btpayments.io\";s:8:\"sessions\";s:1:\"2\";}i:15;a:4:{s:3:\"url\";s:17:\"/withdraws/create\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:20:\"portal.btpayments.io\";s:8:\"sessions\";s:1:\"2\";}i:16;a:4:{s:3:\"url\";s:13:\"/auth/sign-in\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:27:\"admin.testing.btpayments.io\";s:8:\"sessions\";s:1:\"1\";}i:17;a:4:{s:3:\"url\";s:13:\"/auth/sign-in\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:28:\"portal.testing.btpayments.io\";s:8:\"sessions\";s:1:\"1\";}i:18;a:4:{s:3:\"url\";s:13:\"/auth/sign-up\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:19:\"admin.btpayments.io\";s:8:\"sessions\";s:1:\"1\";}i:19;a:4:{s:3:\"url\";s:13:\"/email/verify\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:20:\"portal.btpayments.io\";s:8:\"sessions\";s:1:\"1\";}i:20;a:4:{s:3:\"url\";s:21:\"/integrations/shopify\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:20:\"portal.btpayments.io\";s:8:\"sessions\";s:1:\"1\";}i:21;a:4:{s:3:\"url\";s:17:\"/merchants/create\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:20:\"portal.btpayments.io\";s:8:\"sessions\";s:1:\"1\";}i:22;a:4:{s:3:\"url\";s:36:\"/payments/01JK2EF8JT76QWJ7BDGCFDCQ0Y\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:19:\"admin.btpayments.io\";s:8:\"sessions\";s:1:\"1\";}i:23;a:4:{s:3:\"url\";s:36:\"/payments/01JKGHRTT1Z635BFHG0J25585C\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:19:\"admin.btpayments.io\";s:8:\"sessions\";s:1:\"1\";}i:24;a:4:{s:3:\"url\";s:36:\"/payments/01JKS6RJPH8PM78PD0P3Y1Y5S3\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:19:\"admin.btpayments.io\";s:8:\"sessions\";s:1:\"1\";}i:25;a:4:{s:3:\"url\";s:18:\"/withdraw-accounts\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:20:\"portal.btpayments.io\";s:8:\"sessions\";s:1:\"1\";}i:26;a:4:{s:3:\"url\";s:20:\"/withdraw-accounts/3\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:20:\"portal.btpayments.io\";s:8:\"sessions\";s:1:\"1\";}i:27;a:4:{s:3:\"url\";s:25:\"/withdraw-accounts/create\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:20:\"portal.btpayments.io\";s:8:\"sessions\";s:1:\"1\";}i:28;a:4:{s:3:\"url\";s:13:\"/auth/sign-in\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:24:\"portal.dev.btpayments.io\";s:8:\"sessions\";i:0;}i:29;a:4:{s:3:\"url\";s:13:\"/auth/sign-in\";s:5:\"title\";s:17:\"BtPayments 平台\";s:8:\"hostname\";s:19:\"admin.btpayments.io\";s:8:\"sessions\";i:0;}i:30;a:4:{s:3:\"url\";s:11:\"/developer/\";s:5:\"title\";s:24:\"Developer – BTPayments\";s:8:\"hostname\";s:13:\"btpayments.io\";s:8:\"sessions\";i:0;}i:31;a:4:{s:3:\"url\";s:9:\"/overview\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:24:\"portal.dev.btpayments.io\";s:8:\"sessions\";i:0;}i:32;a:4:{s:3:\"url\";s:36:\"/payments/01JGCS58KR9X4PCVX10N1A11YY\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:19:\"admin.btpayments.io\";s:8:\"sessions\";i:0;}i:33;a:4:{s:3:\"url\";s:36:\"/payments/01JGCVP551E6J31H8D9EYWMD4E\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:19:\"admin.btpayments.io\";s:8:\"sessions\";i:0;}i:34;a:4:{s:3:\"url\";s:36:\"/payments/01JGW5QHREB1R7J599M5267R0Q\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:19:\"admin.btpayments.io\";s:8:\"sessions\";i:0;}i:35;a:4:{s:3:\"url\";s:36:\"/payments/01JGZ4KN9RWH6ECEH96YF2JCTN\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:19:\"admin.btpayments.io\";s:8:\"sessions\";i:0;}i:36;a:4:{s:3:\"url\";s:36:\"/payments/01JJ20QC924S88GDHBKA6K0TXX\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:19:\"admin.btpayments.io\";s:8:\"sessions\";i:0;}i:37;a:4:{s:3:\"url\";s:16:\"/payments?page=2\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:19:\"admin.btpayments.io\";s:8:\"sessions\";i:0;}i:38;a:4:{s:3:\"url\";s:23:\"/payments?type=overpaid\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:19:\"admin.btpayments.io\";s:8:\"sessions\";i:0;}i:39;a:4:{s:3:\"url\";s:19:\"/payments?type=paid\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:19:\"admin.btpayments.io\";s:8:\"sessions\";i:0;}i:40;a:4:{s:3:\"url\";s:24:\"/payments?type=underpaid\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:19:\"admin.btpayments.io\";s:8:\"sessions\";i:0;}i:41;a:4:{s:3:\"url\";s:10:\"/withdraws\";s:5:\"title\";s:19:\"BtPayments Platform\";s:8:\"hostname\";s:19:\"admin.btpayments.io\";s:8:\"sessions\";i:0;}}s:18:\"reportcurrentrange\";a:3:{s:7:\"endDate\";s:10:\"2025-02-26\";s:4:\"name\";N;s:9:\"startDate\";s:10:\"2025-01-28\";}s:15:\"reportprevrange\";a:3:{s:7:\"endDate\";s:10:\"2025-01-27\";s:4:\"name\";N;s:9:\"startDate\";s:10:\"2024-12-29\";}}}','auto'),
(26343,'monsterinsights_eea_compliance_checker','a:2:{s:10:\"ga_checker\";a:2:{s:8:\"ad-links\";b:0;s:14:\"google-signals\";b:0;}s:12:\"last_checked\";i:1731999661;}','auto'),
(27358,'monsterinsights_email_summaries_infoblocks_sent','a:4:{i:0;i:101;i:1;i:99;i:2;i:97;i:3;i:95;}','auto'),
(45264,'monsterinsights_admin_menu_tooltip','1740360888','auto'),
(45892,'_transient_is_multi_author','0','on'),
(47214,'_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.7.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.7.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.7.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.7.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.2\";s:7:\"version\";s:5:\"6.7.2\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1742151661;s:15:\"version_checked\";s:5:\"6.7.2\";s:12:\"translations\";a:0:{}}','off'),
(48288,'_transient_timeout_cx_google_fonts_url_kava','1742274308','off'),
(48289,'_transient_cx_google_fonts_url_kava','//fonts.googleapis.com/css?family=Inter%3A300%2C700%2C500%2C600%2C400&subset=latin','off'),
(48306,'_site_transient_timeout_php_check_f5e5d07428dc8d0f307641bd39321a48','1742281262','off'),
(48307,'_site_transient_php_check_f5e5d07428dc8d0f307641bd39321a48','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'),
(48415,'elementor_pro_remote_info_api_data_3.21.3','a:2:{s:7:\"timeout\";i:1741762867;s:5:\"value\";s:236366:\"{\"stable_version\":\"3.27.6\",\"last_updated\":\"2025-03-10 11:54:31\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:222335:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\n<h4>3.27.6 - 2025-03-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Template Condition<\\/li>\\n<\\/ul>\\n<h4>3.27.5 - 2025-03-03<\\/h4>\\n<ul>\\n<li>Fix: The <code>wp_trigger_error<\\/code> function causes the site to crash instead of triggering a warning when used with ACF text<\\/li>\\n<\\/ul>\\n<h4>3.27.4 - 2025-02-16<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Screenshots module<\\/li>\\n<li>Security Fix: Improved code security enforcement in Query control<\\/li>\\n<li>Fix: ACF <code>true_false<\\/code> field causing a fatal error when used as a dynamic tag with third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/30170\\\">#30170<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.27.3 - 2025-02-06<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Stripe Button widget<\\/li>\\n<\\/ul>\\n<h4>3.27.2 - 2025-02-03<\\/h4>\\n<ul>\\n<li>Fix: Value type configuration issue causing errors when using ACF<\\/li>\\n<li>Fix: Hide content on responsive breakpoint option is not working on WordPress Menu widget when Optimized Markup experiment is activated<\\/li>\\n<\\/ul>\\n<h4>3.27.1 - 2025-01-27<\\/h4>\\n<ul>\\n<li>Tweak: Increased the number of items allowed in Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<li>Security Fix: Improved code security enforcement in Global widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Admin settings<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Empty custom fields are missing in the Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<\\/ul>\\n<h4>3.27.0 - 2025-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Removed the <code>elementor-widget-container<\\/code> div from the Menu, Loop, Table of Contents, Form, and Hotspot widgets as part of the Optimized Markup experiment to improve HTML structure<\\/li>\\n<li>Tweak: Reduced DOM size by optimizing the submit button markup in Search widget<\\/li>\\n<li>Tweak: Moved style loading to the head instead of the footer to improve CLS<\\/li>\\n<li>Tweak: Enabled conditional loading of Swiper.js based on widget dependencies to reduce unnecessary assets and improve page load times<\\/li>\\n<li>Tweak: Standardized navigation elements like arrows and bullets across all carousel and slider widgets for improved accessibility<\\/li>\\n<li>Tweak: Improved accessibility when the submit button has only an icon and no text in Search widget<\\/li>\\n<li>Tweak: Removed <code>load_plugin_textdomain()<\\/code> function from Elementor Pro<\\/li>\\n<\\/ul>\\n<h4>3.26.3 - 2025-01-07<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Search widget<\\/li>\\n<li>Fix: Height issues cause slideshow thumbnails to display incorrectly in Media Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29663\\\">#29663<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.2 - 2024-12-22<\\/h4>\\n<ul>\\n<li>Fix: Menu items are not clickable in various scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29191\\\">#29191<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.1 - 2024-12-17<\\/h4>\\n<ul>\\n<li>Fix: Restore deprecated <code>Plugin::enqueue_styles()<\\/code> function to avoid errors with 3rd party plugins<\\/li>\\n<\\/ul>\\n<h4>3.26.0 - 2024-12-16<\\/h4>\\n<ul>\\n<li>New: Introducing dynamic content support for Off-canvas in Loop Grid widget templates - enabling seamless display of additional content dynamically (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29049\\\">#29049<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28935\\\">#28935<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7106\\\">#7106<\\/a>)<\\/li>\\n<li>New: AdBlock Detection trigger for Popups - display targeted popups for visitors using ad blockers<\\/li>\\n<li>New: Added Reload Page link action for Dynamic Tags<\\/li>\\n<li>Tweak: Added "Space Between Dots" control to Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2526\\\">#2526<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3277\\\">#3277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21697\\\">#21697<\\/a>)<\\/li>\\n<li>Tweak: Replaced hidden <code>elementor-screen-only<\\/code> div with <code>aria-label<\\/code> attributes<\\/li>\\n<li>Tweak: Removed <code>elementor-widget-container<\\/code> div from Elementor widgets as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Optimize popup styling by loading it only when necessary<\\/li>\\n<li>Tweak: Updated Gap between slides control to support only PX units in Carousel widget<\\/li>\\n<li>Tweak: Removed the dependency between the Tabs handler and the Menu handler<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> in Carousel widgets<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=carousel<\\/code> to carousel wrapper<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=slide<\\/code> to slide wrapper<\\/li>\\n<li>Tweak: Optimized carousel widgets markup as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Updated minimum required Safari version to 15.5<\\/li>\\n<li>Tweak: Facebook widgets are no longer supported on mobile due to Facebook functionality changes<\\/li>\\n<li>Fix: Motion Effects sticky feature is not working when Scroll Snap is enabled<\\/li>\\n<li>Fix: Custom Image Resolution option is not working in Gallery widget<\\/li>\\n<li>Fix: \'Reading Settings\' unexpectedly reduces the number of posts displayed when using the Archive with Pagination setting<\\/li>\\n<li>Fix: Step Form does not scroll to the top when the first field is not an input field in Form widget<\\/li>\\n<li>Fix: Display Condition feature is available without an active Elementor license in Floating Elements<\\/li>\\n<li>Fix: Background options of Flip Box in Loop Grid widget are not working when images are added using ACF Dynamic Tags<\\/li>\\n<li>Fix: Dropdown icon in the Select field of the Form widget is cut off when the Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Incompatibility between Form widget and WPML when using Nested Elements<\\/li>\\n<li>Fix: Performance issues when changing the title name in the Menu widget<\\/li>\\n<li>Fix: Warnings appear when Element Caching is set to Inactive in Carousel widgets<\\/li>\\n<li>Fix: Swiper styling missing from Lightbox inside Gallery widgets<\\/li>\\n<\\/ul>\\n<h4>3.25.5 - 2024-12-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Popup overlay shown for non-logged users even when disabled<\\/li>\\n<\\/ul>\\n<h4>3.25.4 - 2024-11-20<\\/h4>\\n<ul>\\n<li>Tweak: Improved Global Widget loading method to enhance performance<\\/li>\\n<\\/ul>\\n<h4>3.25.3 - 2024-11-13<\\/h4>\\n<ul>\\n<li>Fix: Nested Elements are activated even when the Container experiment is inactive<\\/li>\\n<\\/ul>\\n<h4>3.25.2 - 2024-11-03<\\/h4>\\n<ul>\\n<li>Fix: Styling issues affecting popup layout when using a Dynamic Tag to open the popup<\\/li>\\n<li>Fix: Image captions are not displaying for non-logged-in users in Media Carousel widget<\\/li>\\n<li>Fix: Custom Add to Cart widget with Quantity enabled causes critical error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29159\\\">#29159<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.25.1 - 2024-10-31<\\/h4>\\n<ul>\\n<li>Fix: Multiple Custom Add to Cart widgets on the same page are adding the same product<\\/li>\\n<\\/ul>\\n<h4>3.25.0 - 2024-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added pagination functionality to the Live Results in Search widget<\\/li>\\n<li>Tweak: Added Anchor Offset control to allow precise positioning when scrolling to anchor links on the page<\\/li>\\n<li>Tweak: Load motion effects styles only when they are in use<\\/li>\\n<li>Tweak: Load sticky styles only when they are in use<\\/li>\\n<li>Tweak: Load popup styles only when they are in use<\\/li>\\n<li>Tweak: Load theme builder styles only when they are in use<\\/li>\\n<li>Tweak: Load transition styles for Call to Action and Gallery widgets only when they are in use<\\/li>\\n<li>Tweak: Load styles for Form widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for WooCommerce widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Theme Elements widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Carousel widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Pricing widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Floating Elements separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Link in Bio widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load minified CSS in the Loop Builder\'s Call to Action button in the Editor<\\/li>\\n<li>Tweak: Removed "Payments" module styles<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Payapl widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Stripe widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Merged "Form Submissions" feature into the version and moved it to the Advanced tab<\\/li>\\n<li>Tweak: Merged "Display Conditions" into the version<\\/li>\\n<li>Fix: Missing translation string for the empty message in the Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27580\\\">#27580<\\/a>)<\\/li>\\n<li>Fix: Local Storage and Session Storage were being used even when popups were not in use (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7151\\\">#7151<\\/a>)<\\/li>\\n<li>Fix: Masonry layout is not working when pagination is set to "Load More" or "Infinite Scroll" in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23684\\\">#23684<\\/a>)<\\/li>\\n<li>Fix: Extra gap between widgets on the frontend when using Off-canvas widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27706\\\">#27706<\\/a>)<\\/li>\\n<li>Fix: Pagination and custom queries did not work when the Posts Widget was saved as a Global Widget or used via shortcode<\\/li>\\n<li>Fix: Lightbox videos are missing controls and displayed at the wrong size in Media Carousel widget<\\/li>\\n<li>Fix: Pagination options with Individual Pagination not working as expected in Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Justified or Masonry layouts for the Pro Gallery would not display images on the frontend when inserted via nested tabs<\\/li>\\n<li>Fix: Error issue in the Loop Grid widget when used in theme parts with the Taxonomy Filter<\\/li>\\n<li>Fix: Removed the focus ring after clicking to open the Off Canvas inside the Editor<\\/li>\\n<li>Fix: Background gradient colors from the dynamic color tag values are not rendering on the frontend<\\/li>\\n<li>Fix: Excessive database requests generated by the Loop Grid widget<\\/li>\\n<li>Fix: Colors from Dynamic Tags were not rendered on the frontend<\\/li>\\n<li>Fix: Display issue in the Menu widget caused by the \'Native Intersection Observer API<\\/li>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget<\\/li>\\n<li>Fix: Content Width control inside the Mega Menu is displaying an empty value<\\/li>\\n<\\/ul>\\n<h4>3.24.4 - 2024-10-09<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<\\/ul>\\n<h4>3.24.3 - 2024-10-01<\\/h4>\\n<ul>\\n<li>Fix: Floating Elements template not loading when Single Page template is set with All Singular condition<\\/li>\\n<li>Fix: Form field styles not loading properly in various scenarios<\\/li>\\n<\\/ul>\\n<h4>3.24.2 - 2024-09-18<\\/h4>\\n<ul>\\n<li>Fix: Icons not displaying when Inline SVG Icons experiment is active in Link In Bio widgets and Floating Elements<\\/li>\\n<\\/ul>\\n<h4>3.24.1 - 2024-09-12<\\/h4>\\n<ul>\\n<li>Fix: Widget styles not loading correctly on front causing alignment inconsistencies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28676\\\">#28676<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.24.0 - 2024-09-10<\\/h4>\\n<ul>\\n<li>New: Introducing support for Variable Fonts - allowing for more dynamic and flexible text styling (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6703\\\">#6703<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11333\\\">#11333<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19277\\\">#19277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25485\\\">#25485<\\/a>)<\\/li>\\n<li>Tweak: Added \'Structure\' indication for widgets with Display Conditions applied (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28027\\\">#28027<\\/a>)<\\/li>\\n<li>Tweak: Added a new option for setting the live search results width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28280\\\">#28280<\\/a>)<\\/li>\\n<li>Tweak: Improved Honeypot field functionality in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28480\\\">#28480<\\/a>)<\\/li>\\n<li>Tweak: Added options to \'Copy\', \'Paste\', and \'Clear\' Display Conditions in Context Menu<\\/li>\\n<li>Tweak: Improved performance of the Menu widget when using Dynamic Tags in the URL field<\\/li>\\n<li>Tweak: Improved performance when using Dynamic Tags in Nested Elements<\\/li>\\n<li>Tweak: Added the option for users to disable Akismet for specific Elementor forms<\\/li>\\n<li>Tweak: Adjusted URL structure when presenting the Search Archive page in Search widget<\\/li>\\n<li>Tweak: Added the \'Create Template\' button in Search widget<\\/li>\\n<li>Tweak: Added an option to enable the \'Loader\' animation while live results are loading in Search widget<\\/li>\\n<li>Tweak: Load share buttons compatibility styles only when they are in use<\\/li>\\n<li>Tweak: Load dialog styles only when they are in use<\\/li>\\n<li>Tweak: Load global widget styles only during Editor preview<\\/li>\\n<li>Tweak: Conditionally load widget styles only when the widgets are used<\\/li>\\n<li>Tweak: Load styles for CTA hover animations only when they are in use<\\/li>\\n<li>Tweak: Load notes styles only when the WordPress Toolbar is displayed<\\/li>\\n<li>Tweak: Split <code>animations.min.css<\\/code> into multiple CSS files and load them conditionally<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Stable status<\\/li>\\n<li>Tweak: Merged Taxonomy Filter feature into the version<\\/li>\\n<li>Tweak: Merged Search feature into the version<\\/li>\\n<li>Tweak: Added a note to \'Current Query\' explaining the impact of WordPress settings on pagination within Archives<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for the Off-Canvas widget<\\/li>\\n<li>Fix: Manual Selection option is not excluding sticky posts in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18689\\\">#18689<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23331\\\">#23331<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28179\\\">#28179<\\/a>)<\\/li>\\n<li>Fix: Template ID does not change according to the imported Loop Item (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21404\\\">#21404<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22202\\\">#22202<\\/a>)<\\/li>\\n<li>Fix: \'Editing Mode\' for the Off-canvas was not functioning correctly in certain scenarios<\\/li>\\n<li>Fix: Added definition to <code>clear_custom_image_sizes<\\/code> hook to prevent edge case issues<\\/li>\\n<li>Fix: Flickering issue with search result buttons when closing results using the keyboard escape key in Search widget<\\/li>\\n<li>Fix: Theme Style settings for buttons were overriding the text styling in Search widget<\\/li>\\n<li>Fix: Nesting menu inside another menu causes functionality issues in Menu widget<\\/li>\\n<li>Fix: Error when using array as custom fields value in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.23.3 - 2024-08-05<\\/h4>\\n<ul>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28194\\\">#28194<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.23.2 - 2024-07-29<\\/h4>\\n<ul>\\n<li>Fix: Horizontal scroll bar appearing on the page when using Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28087\\\">#28087<\\/a>)<\\/li>\\n<li>Fix: Dropdown area disappearing in certain scenarios in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.23.1 - 2024-07-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in link URL<\\/li>\\n<\\/ul>\\n<h4>3.23.0 - 2024-07-15<\\/h4>\\n<ul>\\n<li>New: Search Widget with Live Results - Display live search results as visitors type into the search box, enhancing user experience and engagement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27664\\\">#27664<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24931\\\">#24931<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21459\\\">#21459<\\/a>)<\\/li>\\n<li>Tweak: Renamed <code>width<\\/code> to <code>Min width<\\/code> and added <code>Max width<\\/code> control to Hotspot tooltips (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18930\\\">#18930<\\/a>)<\\/li>\\n<li>Tweak: Applied a logical DOM order to the Mega Menu widget to improve accessibility<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for WordPress Menu widget<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for Menu widget<\\/li>\\n<li>Tweak: Added a bottom option to the Image Position control in Call to Action widget<\\/li>\\n<li>Fix: Missing version string in included CSS query string when Improved CSS Loading is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21879\\\">#21879<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23821\\\">#23821<\\/a>)<\\/li>\\n<li>Fix: Form submission icon message does not display correctly when Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Save and Close button position issues in the conditions screen in Theme Builder.<\\/li>\\n<li>Fix: Focus appears on the first element when using the mouse to open Off-Canvas <\\/li>\\n<li>Fix: Links to Elementor Settings are broken in various locations<\\/li>\\n<li>Fix: Conditions field not showing all relevant conditions in Theme Builder<\\/li>\\n<li>Fix: Off-Canvas flickering in sticky containers with exit animations triggered by sticky effects<\\/li>\\n<\\/ul>\\n<h4>3.22.1 - 2024-06-24<\\/h4>\\n<ul>\\n<li>Fix: Styling of Global widgets not loading when Element Caching experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27704\\\">#27704<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.22.0 - 2024-06-16<\\/h4>\\n<ul>\\n<li>New: Introducing Off-Canvas widget - create engaging and creative layers triggered by a link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6225\\\">#6225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21769\\\">#21769<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25770\\\">#25770<\\/a>)<\\/li>\\n<li>Tweak: Added option to remove \'User IP\' and \'User Agent\' from the form submissions metadata (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14285\\\">#14285<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>waypoints.js<\\/code> library with the native Intersection Observer API<\\/li>\\n<li>Tweak: Extended Alignment and Position capabilities in Form widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Flip Box widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Call to Action widget<\\/li>\\n<li>Tweak: Optimized Form widget to eliminate unnecessary markup when the button icon is empty<\\/li>\\n<li>Tweak: Optimized Posts widget to eliminate unnecessary markup when Load More button text is empty<\\/li>\\n<li>Tweak: Remove <code>placeholder<\\/code> arguments from URL controls<\\/li>\\n<li>Tweak: Implemented CSS logical properties to Icon Position in Form, Posts and Menu Cart widgets<\\/li>\\n<li>Tweak: Activated Display Conditions feature for existing sites<\\/li>\\n<li>Tweak: Activated Taxonomy Filter feature for existing sites<\\/li>\\n<li>Tweak: Added functionality to delay the running of the ready triggers on inner elements<\\/li>\\n<li>Fix: Icons are now part of the link in the Menu Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24298\\\">#24298<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25112\\\">#25112<\\/a>)<\\/li>\\n<li>Fix: <code>all: unset<\\/code> assigned to buttons cause focus issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24322\\\">#24322<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25448\\\">#25448<\\/a>)<\\/li>\\n<li>Fix: Menu cart SVG icon disappears on front when Optimized Control Loading experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27342\\\">#27342<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro auto-updates are not working on multisite networks (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12615\\\">#12615<\\/a>)<\\/li>\\n<li>Fix: PHP error appears in the editor when using Loop Grid in an archive template<\\/li>\\n<li>Fix: UI glitch on Icon Position control in Paypal and Stripe Buttons widgets<\\/li>\\n<li>Fix: Icon Position control RTL issue in Hotspot widget<\\/li>\\n<li>Fix: Manual Selection "Include By" Query doesn\'t work with product categories<\\/li>\\n<\\/ul>\\n<h4>3.21.3 - 2024-05-20<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Loop Grid widget<\\/li>\\n<li>Fix: License expired affects the Display Conditions functionality in the front end<\\/li>\\n<\\/ul>\\n<h4>3.21.2 - 2024-04-30<\\/h4>\\n<ul>\\n<li>Fix: Special characters are not displayed correctly when using the Excerpt widget in Loop template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25860\\\">#25860<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.21.1 - 2024-04-24<\\/h4>\\n<ul>\\n<li>Fix: Excerpt Length setting doesn\'t function correctly for languages with non-English characters in Post Excerpt widget<\\/li>\\n<\\/ul>\\n<h4>3.21.0 - 2024-04-15<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Taxonomy Query - Enabling the display of post and product categories and tags within Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21372\\\">#21372<\\/a>)<\\/li>\\n<li>Tweak: Optimized Hotspot widget to prevent rendering when no image is provided<\\/li>\\n<li>Tweak: Optimized Blockquote widget to eliminate unnecessary markup when devoid of content<\\/li>\\n<li>Tweak: Optimized Template widget to eliminate unnecessary markup when no template is selected<\\/li>\\n<li>Tweak: Optimized Code Highlight widget to eliminate unnecessary markup when there is no content<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Portfolio widget<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Author Avatar image alt text in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25440\\\">#25440<\\/a>)<\\/li>\\n<li>Tweak: Notes feature merged to version<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Profile Picture alt text in Author widget<\\/li>\\n<li>Fix: Display issue on hover state in WooCommerce Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.20.3 - 2024-04-10<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issue between the My Account widget and other third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20986\\\">#20986<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.20.2 - 2024-03-26<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Post Navigation widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Gallery widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.20.1 - 2024-03-20<\\/h4>\\n<ul>\\n<li>Fix: Strengthened code integrity in deprecated Woo Single Element widget<\\/li>\\n<li>Fix: PHP error notice appears when using Loop Grid with the Taxonomy Filter widgets<\\/li>\\n<\\/ul>\\n<h4>3.20.0 - 2024-03-11<\\/h4>\\n<ul>\\n<li>Tweak: Implemented OR logic in the Display Conditions feature<\\/li>\\n<li>Tweak: Added X and Threads social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25299\\\">#25299<\\/a>)<\\/li>\\n<li>Tweak: Added Archive Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Alt dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Caption dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Bio dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Email dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Website dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Page Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Post Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Comments Number rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Archive Author rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added support for WordPress Custom Fields in Display Conditions feature<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23875\\\">#23875<\\/a>)<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Login widget<\\/li>\\n<li>Tweak: Added additional style controls in the Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration option in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21295\\\">#21295<\\/a>)<\\/li>\\n<li>Tweak: Added Transition Duration to button in Flip Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Author Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to List in Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Login widget<\\/li>\\n<li>Tweak: Added Transition Duration in Post Navigation widget<\\/li>\\n<li>Tweak: Added Transition Duration Show More in Video Playlist widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Form widget<\\/li>\\n<li>Tweak: Removed separator-none argument from all Editor controls<\\/li>\\n<li>Tweak: Add <code><time><\\/code> wrapper for Date and Time items in Post Info widget<\\/li>\\n<li>Tweak: Page Transitions feature merged to version<\\/li>\\n<li>Tweak: Scroll Snap feature merged to version<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Beta status and activated for new sites<\\/li>\\n<li>Tweak: Promoted Taxonomy Filter feature to beta status and activated for new sites<\\/li>\\n<li>Fix: Page Transitions feature and Load Font Awesome 4 Support cause a console error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18885\\\">#18885<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19334\\\">#19334<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21082\\\">#21082<\\/a>)<\\/li>\\n<li>Fix: Added better output escaping in Taxonomy Filter widget<\\/li>\\n<\\/ul>\\n<h4>3.19.3 - 2024-02-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved Loop CSS loading structure in Loop Grid item<\\/li>\\n<li>Security Fix: Addressed security weaknesses in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.19.2 - 2024-02-07<\\/h4>\\n<ul>\\n<li>Fix: Export data inconsistencies when using form actions in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.19.1 - 2024-02-05<\\/h4>\\n<ul>\\n<li>Fix: Enqueuing non-existing Loop Template CSS file in Loop Item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24959\\\">#24959<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>New: Introducing Display Conditions for Elements - allowing users to customize content visibility based on specified criteria (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4246\\\">#4246<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21152\\\">#21152<\\/a>)<\\/li>\\n<li>New: Implemented Akismet Integration for enhanced spam protection and security in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11401\\\">#11401<\\/a>)<\\/li>\\n<li>New: Introducing Permissions functionality to Element Manager - providing users with enhanced control over access and management capabilities<\\/li>\\n<li>Tweak: Added styling option for dropdown indicator in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21907\\\">#21907<\\/a>)<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Implemented CSS logical properties in WordPress Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Reviews widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Countdown widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Updated <code>jquery.smartmenus.js<\\/code> version from 1.1.1 to 1.2.0<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21489\\\">#21489<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22368\\\">#22368<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23085\\\">#23085<\\/a>)<\\/li>\\n<li>Fix: History panel deprecation notices in console log<\\/li>\\n<li>Fix: Second Pro rollback installed the latest version instead of the specifically selected older version<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation in Menu Widget<\\/li>\\n<li>Fix: UX issues when using in-place editing in Menu widget<\\/li>\\n<li>Fix: Pagination with page reload is not working when used with the Taxonomy filter and Loop Grid widget in Archive template<\\/li>\\n<\\/ul>\\n<h4>3.18.2 - 2023-12-20<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Price List widget<\\/li>\\n<li>Fix: Error messages related to loop filter appear on front when using PHP 8.X and <code>WP_DEBUG<\\/code> is true<\\/li>\\n<\\/ul>\\n<h4>3.18.1 - 2023-12-06<\\/h4>\\n<ul>\\n<li>Fix: No results appeared when reloading the page with deep link and de-selecting terms in Taxonomy Filter widget<\\/li>\\n<li>Fix: No results appeared when filtering the Uncategorized category in Filter Taxonomy widget<\\/li>\\n<li>Fix: Notes still available when the Notes feature is deactivated<\\/li>\\n<\\/ul>\\n<h4>3.18.0 - 2023-12-04<\\/h4>\\n<ul>\\n<li>Tweak: Added the ability to upload files as attachments to emails in the File Upload field in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4868\\\">#4868<\\/a>)<\\/li>\\n<li>Tweak: Introduced the capability to design and edit the empty state in the Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24261\\\">#24261<\\/a>)<\\/li>\\n<li>Tweak: Implemented the option to close the menu content area with a click anywhere on the screen in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22686\\\">#22686<\\/a>)<\\/li>\\n<li>Tweak: Improve scrolling behavior inside the content area when there is not enough space in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22712\\\">#22712<\\/a>)<\\/li>\\n<li>Tweak: Expanded breakpoint options in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22488\\\">#22488<\\/a>)<\\/li>\\n<li>Tweak: Added Logical Combination control in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added additional units to Horizontal and Vertical padding for Dropdown in WordPress Menu widget<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in Loop Carousel and Carousel widgets<\\/li>\\n<li>Tweak: Added various HTML Tag controls in Video Playlist widget<\\/li>\\n<li>Tweak: Added responsive control to navigation size in Slides, Reviews, Media Carousel and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added semantic <code><search><\\/code> wrapper in Search Form widget<\\/li>\\n<li>Tweak: Added semantic <code><search><\\/code> wrapper in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added Multiple Selection control in Taxonomy Filter widget<\\/li>\\n<li>Fix: Deprecated notice when using ${var} in strings instead of {$var} with PHP 8.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23927\\\">#23927<\\/a>)<\\/li>\\n<li>Fix: Dropdown indicator position issue in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23947\\\">#23947<\\/a>)<\\/li>\\n<li>Fix: Dynamic Tags are not available when choosing \'self-hosted\' source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\\">#17523<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\\">#17768<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\\">#23430<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\\">#23607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\\">#22554<\\/a>)<\\/li>\\n<li>Fix: \'Fallback: Recent Posts\' option malfunctions in the Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\\">#21436<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an "Offset Sides" functionality in Carousel and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21114\\\">#21114<\\/a>)<\\/li>\\n<li>Tweak: Modified the size of the Publish button in the Editor Top Bar feature (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22472\\\">#22472<\\/a>)<\\/li>\\n<li>Tweak: Improved Ajax permissions functionality for better security enforcement<\\/li>\\n<li>Tweak: Added option for pagination custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added option for navigation custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added additional styling options for navigation in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added labels to shortcode column in WordPress admin<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in Menu widget<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in My Account widget<\\/li>\\n<li>Tweak: Improved panel UI in Video Playlist widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Added "Title HTML Tag" and "Description HTML Tag" in Price List widget<\\/li>\\n<li>Tweak: Added "Title HTML Tag" and "Description HTML Tag" in Slides widget<\\/li>\\n<li>Tweak: Added "Title HTML Tag" and "Description HTML Tag" in Flip Box widget<\\/li>\\n<li>Tweak: Added "Description HTML Tag" in Call To Action widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Share Buttons widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: WooCommerce Status page failed to recognize Elementor WooCommerce widgets<\\/li>\\n<li>Fix: Pagination does not work inside single templates when using Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Incorrect saving of WooCommerce page settings in Elementor site settings under certain scenarios<\\/li>\\n<\\/ul>\\n<h4>3.14.1 - 2023-06-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved navigation on touch devices in Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22827\\\">#22827<\\/a>)<\\/li>\\n<li>Fix: Missing navigation arrows on lightbox in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22870\\\">#22870<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.14.0 - 2023-06-19<\\/h4>\\n<ul>\\n<li>New: Introducing Carousel widget - Infinite design possibilities, and nesting capabilities (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2587\\\">#2587<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>Tweak: Added Static Item Position functionality to Alternate template in Loop Grid widget<\\/li>\\n<li>Tweak: Added visual indication of Page Parts<\\/li>\\n<li>Tweak: Added dividers option between menu items in Menu widget<\\/li>\\n<li>Tweak: Changed the HTML structure of Pagination and Navigation in Loop Carousel and Nested Carousel widgets<\\/li>\\n<li>Tweak: Added shop page in WooCommerce Pages section in Site Settings<\\/li>\\n<li>Tweak: Added Text Shadow, Box Shadow and Padding control to button in Call to Action widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Video Playlist widget<\\/li>\\n<li>Tweak: Added <code>alt<\\/code> attribute to images in Video Playlist widget<\\/li>\\n<li>Tweak: Replaced select control with choose control for Flip Direction control in Flip Box widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Use <code>media_types<\\/code> array in Media controls<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11193\\\">#11193<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19871\\\">#19871<\\/a>)<\\/li>\\n<li>Fix: Responsive settings for templates don\'t work as expected when Additional Custom Breakpoints feature is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\\">#16819<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn\'t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added \'Active item state\' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget\'s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the \'Gap between slides\' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added "Form Validation" control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under "Advanced Rules" in popup publish settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save & Back handle becomes inaccessible in various scenarios cases in Loop Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">#21316<\\/a>)<\\/li>\\n<li>Fix: Can\'t edit page when using \'Content Tabs\' and \'Section\' options in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful & repeating loop templates and populate each one with dynamic content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups\' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn\'t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to \'Show up to X times\' advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added \'Equal height\' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-20<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-06<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\\">#20207<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\\">#20235<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\\">#20258<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful & repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\\">#11562<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\\">#15828<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\\">#19540<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\\">#19618<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\\">#19777<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\\">#18895<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note\'s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label\'s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">#19553<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\\">#18598<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes character is showing up as <code>&quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\\">#18633<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into "Row" direction Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629\\\">#18629<\\/a>)<\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles & Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn\'t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel & Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce & Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added "Auto Updates" capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added "Excerpt Length" control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel "Need Help" link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content & Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the "Change" Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave & Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not "Standard" in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475]\\\">#11475<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">#10690<\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added "Show on Browsers" Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to "Canvas" Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to "Move to Trash" in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress "Learn More" links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word "occurred" in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using "Progress Bar" and "None" view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing "for" attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing "Save Changes" document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: "No headings were found on this page" message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can\'t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added "Open in new tab" option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: "Graphic Element" section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title & Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: "Reply To" option not working in Form widget "Email 2" Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: "No products were found" message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code><br><\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code><p><\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL "undefined Index" notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show "Custom label" control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed "Date" query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn\'t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for "By Author" condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn\'t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under "All" filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder\'s Icons for Custom icons & Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the "Save as Global" option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when "Infinite Loop" enabled with "Autoplay" in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core >=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix: Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>>2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: "Child of Term" and "Any child of term" conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS & Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows & Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it\'s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in "All Archives" condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row & column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas & Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling & Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in "Show up to X times" Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed "Scrolling Effects" section label to "Motion Effects"<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns & Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart "View Cart" & "Checkout" buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it\'s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code><IfModule><\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to "On"<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for "Nothing Found" message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in "Nothing Found" message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box & CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons & buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> & <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won\'t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab & Custom CSS for Header & Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing "Edit Template" in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added "Any Child Of" condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added "In Child" condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed "Child Of" templates condition to "Direct Child Of"<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari & IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image & ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags & widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title & Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller & more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements & Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it\'s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for "Nothing Found" Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it\'s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to "All Singular"<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control & Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 & 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow "Content Only mode" (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo & Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min & max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to "Tweet" button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio & checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll & Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 & 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible "required" field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when "Bring to Front" is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler & load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts & Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA & Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc & Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products & Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control & Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position "none" remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts & Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies & authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.27.6\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.7.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"\",\"download_link\":\"\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.7.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"\",\"download_link\":\"\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]},\"cloud\":false}\";}','off'),
(49072,'_transient_timeout_elementor_rollback_versions_3.21.8','1742614263','off'),
(49073,'_transient_elementor_rollback_versions_3.21.8','a:30:{i:0;s:6:\"3.21.7\";i:1;s:6:\"3.21.6\";i:2;s:6:\"3.21.5\";i:3;s:6:\"3.21.4\";i:4;s:6:\"3.21.3\";i:5;s:6:\"3.21.2\";i:6;s:6:\"3.21.1\";i:7;s:6:\"3.21.0\";i:8;s:6:\"3.20.4\";i:9;s:6:\"3.20.3\";i:10;s:6:\"3.20.2\";i:11;s:6:\"3.20.1\";i:12;s:6:\"3.20.0\";i:13;s:6:\"3.19.4\";i:14;s:6:\"3.19.3\";i:15;s:6:\"3.19.2\";i:16;s:6:\"3.19.1\";i:17;s:6:\"3.19.0\";i:18;s:6:\"3.18.3\";i:19;s:6:\"3.18.2\";i:20;s:6:\"3.18.1\";i:21;s:6:\"3.18.0\";i:22;s:6:\"3.17.3\";i:23;s:6:\"3.17.2\";i:24;s:6:\"3.17.1\";i:25;s:6:\"3.17.0\";i:26;s:6:\"3.16.6\";i:27;s:6:\"3.16.5\";i:28;s:6:\"3.16.4\";i:29;s:6:\"3.16.3\";}','off'),
(49368,'_site_transient_timeout_jet_dashboard_license_expire_check','1742184183','off'),
(49369,'_site_transient_jet_dashboard_license_expire_check','true','off'),
(49394,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1742151662;s:7:\"checked\";a:4:{s:12:\"calcue-child\";s:5:\"1.0.1\";s:15:\"hello-elementor\";s:5:\"3.0.2\";s:4:\"kava\";s:5:\"2.1.2\";s:16:\"twentytwentyfive\";s:3:\"1.0\";}s:8:\"response\";a:2:{s:15:\"hello-elementor\";a:6:{s:5:\"theme\";s:15:\"hello-elementor\";s:11:\"new_version\";s:5:\"3.3.0\";s:3:\"url\";s:45:\"https://wordpress.org/themes/hello-elementor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/hello-elementor.3.3.0.zip\";s:8:\"requires\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.4\";}s:16:\"twentytwentyfive\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfive\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfive.1.1.zip\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.2\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','off'),
(49395,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1742182203;s:8:\"response\";a:4:{s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"6.0.5\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.6.0.5.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.6\";s:6:\"tested\";s:5:\"6.7.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":13:{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.27.7\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.7.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.3\";s:6:\"tested\";s:5:\"6.7.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:34:\"tidio-live-chat/tidio-elements.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:29:\"w.org/plugins/tidio-live-chat\";s:4:\"slug\";s:15:\"tidio-live-chat\";s:6:\"plugin\";s:34:\"tidio-live-chat/tidio-elements.php\";s:11:\"new_version\";s:6:\"6.0.25\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/tidio-live-chat/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/tidio-live-chat.6.0.25.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/tidio-live-chat/assets/icon-256x256.png?rev=3241704\";s:2:\"1x\";s:68:\"https://ps.w.org/tidio-live-chat/assets/icon-128x128.png?rev=3241704\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/tidio-live-chat/assets/banner-1544x500.png?rev=3241704\";s:2:\"1x\";s:70:\"https://ps.w.org/tidio-live-chat/assets/banner-772x250.png?rev=3241704\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"6.7.2\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}}s:31:\"elementor-pro/elementor-pro.php\";O:8:\"stdClass\":17:{s:14:\"stable_version\";s:6:\"3.27.6\";s:12:\"last_updated\";s:19:\"2025-03-10 11:54:31\";s:11:\"new_version\";s:6:\"3.27.6\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.7.2\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:0:\"\";s:13:\"download_link\";s:0:\"\";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:5:\"icons\";a:1:{s:3:\"svg\";s:75:\"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg\";}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:12:{s:11:\"new_version\";s:5:\"3.7.0\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.7.2\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:0:\"\";s:13:\"download_link\";s:0:\"\";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:5:\"icons\";a:1:{s:3:\"svg\";s:75:\"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg\";}}s:10:\"conditions\";a:1:{i:0;a:1:{i:0;a:3:{s:4:\"type\";s:8:\"language\";s:9:\"languages\";a:27:{i:0;s:5:\"he_IL\";i:1;s:5:\"nl_NL\";i:2;s:5:\"en_GB\";i:3;s:5:\"en_NZ\";i:4;s:5:\"en_ZA\";i:5;s:5:\"en_AU\";i:6;s:5:\"en_CA\";i:7;s:5:\"sv_SE\";i:8;s:5:\"da_DK\";i:9;s:5:\"fr_FR\";i:10;s:5:\"nl_NL\";i:11;s:5:\"nb_NO\";i:12;s:5:\"de_AT\";i:13;s:2:\"fi\";i:14;s:5:\"it_IT\";i:15;s:5:\"nn_NO\";i:16;s:5:\"de_CH\";i:17;s:5:\"en_GB\";i:18;s:5:\"is_IS\";i:19;s:2:\"ga\";i:20;s:5:\"fr_BE\";i:21;s:5:\"nl_BE\";i:22;s:3:\"ast\";i:23;s:5:\"lb_LU\";i:24;s:5:\"es_ES\";i:25;s:5:\"pt_PT\";i:26;s:3:\"mlt\";}s:8:\"operator\";s:2:\"in\";}}}}s:5:\"cloud\";b:0;s:6:\"plugin\";s:31:\"elementor-pro/elementor-pro.php\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:1:{s:50:\"google-analytics-for-wordpress/googleanalytics.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:44:\"w.org/plugins/google-analytics-for-wordpress\";s:4:\"slug\";s:30:\"google-analytics-for-wordpress\";s:6:\"plugin\";s:50:\"google-analytics-for-wordpress/googleanalytics.php\";s:11:\"new_version\";s:5:\"9.3.1\";s:3:\"url\";s:61:\"https://wordpress.org/plugins/google-analytics-for-wordpress/\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.9.3.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:75:\"https://ps.w.org/google-analytics-for-wordpress/assets/icon.svg?rev=2976619\";s:3:\"svg\";s:75:\"https://ps.w.org/google-analytics-for-wordpress/assets/icon.svg?rev=2976619\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:86:\"https://ps.w.org/google-analytics-for-wordpress/assets/banner-1544x500.png?rev=2159532\";s:2:\"1x\";s:85:\"https://ps.w.org/google-analytics-for-wordpress/assets/banner-772x250.png?rev=2159532\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"5.6.0\";}}s:7:\"checked\";a:15:{s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.9.5\";s:23:\"elementor/elementor.php\";s:6:\"3.21.8\";s:31:\"elementor-pro/elementor-pro.php\";s:6:\"3.27.6\";s:50:\"google-analytics-for-wordpress/googleanalytics.php\";s:5:\"9.3.1\";s:25:\"jet-blocks/jet-blocks.php\";s:6:\"1.3.12\";s:21:\"jet-blog/jet-blog.php\";s:5:\"2.3.7\";s:39:\"jet-data-importer/jet-data-importer.php\";s:5:\"1.2.2\";s:29:\"jet-elements/jet-elements.php\";s:8:\"2.6.17.1\";s:21:\"jet-menu/jet-menu.php\";s:5:\"2.4.4\";s:41:\"jet-plugins-wizard/jet-plugins-wizard.php\";s:5:\"1.2.9\";s:21:\"jet-tabs/jet-tabs.php\";s:5:\"2.2.2\";s:33:\"jet-theme-core/jet-theme-core.php\";s:5:\"2.2.0\";s:25:\"jet-tricks/jet-tricks.php\";s:5:\"1.4.8\";s:25:\"kava-extra/kava-extra.php\";s:5:\"1.0.5\";s:34:\"tidio-live-chat/tidio-elements.php\";s:6:\"6.0.21\";}}','off'),
(49442,'_site_transient_timeout_available_translations','1742184203','off');
INSERT INTO `wp_options` VALUES
(49443,'_site_transient_available_translations','a:131:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"am\";a:8:{s:8:\"language\";s:2:\"am\";s:7:\"version\";s:5:\"6.0.9\";s:7:\"updated\";s:19:\"2022-09-29 20:43:49\";s:12:\"english_name\";s:7:\"Amharic\";s:11:\"native_name\";s:12:\"አማርኛ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.0.9/am.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"am\";i:2;s:3:\"amh\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ቀጥል\";}}s:3:\"arg\";a:8:{s:8:\"language\";s:3:\"arg\";s:7:\"version\";s:8:\"6.2-beta\";s:7:\"updated\";s:19:\"2022-09-22 16:46:56\";s:12:\"english_name\";s:9:\"Aragonese\";s:11:\"native_name\";s:9:\"Aragonés\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.2-beta/arg.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"an\";i:2;s:3:\"arg\";i:3;s:3:\"arg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continar\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2024-02-13 12:49:38\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.5/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"متابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.25\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.25/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2024-11-01 09:05:28\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2024-01-19 08:58:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.4.5/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.26\";s:7:\"updated\";s:19:\"2024-12-26 00:37:42\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.26/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-01-12 07:32:34\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-20 08:42:35\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:28:\"চালিয়ে যান\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-10-30 03:24:38\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:33:\"མུ་མཐུད་དུ།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2023-02-22 20:45:53\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.6/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-01-23 15:46:02\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-11 08:34:45\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-04 15:09:31\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-07 09:18:15\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2024-11-05 18:11:40\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-16 02:47:33\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-16 02:46:38\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.7.2/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2024-11-05 18:08:14\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/6.7.2/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-03 07:45:57\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2022-07-16 12:13:09\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"Dolnoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.6/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-22 11:02:17\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2024-11-08 19:43:34\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-06 16:38:21\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2024-12-15 22:47:35\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2024-11-12 00:03:39\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2024-11-14 20:17:10\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-18 15:16:11\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2024-12-09 22:28:42\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2024-10-16 21:04:12\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-01 20:26:01\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-04 14:46:26\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-24 16:12:08\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2023-10-16 16:00:04\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.5/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2023-04-21 13:32:10\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"Español de Ecuador\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.6/es_EC.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:6:\"5.8.10\";s:7:\"updated\";s:19:\"2021-10-08 14:32:50\";s:12:\"english_name\";s:28:\"Spanish (Dominican Republic)\";s:11:\"native_name\";s:33:\"Español de República Dominicana\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.8.10/es_DO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-31 18:33:26\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:6:\"5.4.16\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"Español de Puerto Rico\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.16/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.21\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.21/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-05 15:56:22\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-02 23:11:20\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"6.5.5\";s:7:\"updated\";s:19:\"2024-06-06 09:50:37\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.5/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-26 16:06:47\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-01-30 10:07:14\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-14 17:29:08\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-01-27 13:02:04\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2024-12-12 22:29:22\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-22 22:25:45\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"6.5.5\";s:7:\"updated\";s:19:\"2024-02-01 23:56:53\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.5/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.25\";s:7:\"updated\";s:19:\"2023-04-30 13:56:46\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.25/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"fy\";a:8:{s:8:\"language\";s:2:\"fy\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2022-12-25 12:53:23\";s:12:\"english_name\";s:7:\"Frisian\";s:11:\"native_name\";s:5:\"Frysk\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.6/fy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fy\";i:2;s:3:\"fry\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Trochgean\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-01-29 23:44:41\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-27 06:35:56\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ચાલુ રાખો\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.33\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.4.33/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2024-05-04 18:39:24\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.6/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2025-02-06 05:17:11\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.5/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"जारी रखें\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-01 09:14:16\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2023-02-22 17:37:32\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.6/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-13 12:24:50\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-01-31 11:29:26\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.9.26\";s:7:\"updated\";s:19:\"2018-12-11 10:40:02\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.26/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-06 16:58:04\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-07 13:30:47\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"次へ\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.26\";s:7:\"updated\";s:19:\"2019-02-16 23:58:56\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.26/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-01 06:53:56\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2023-07-05 11:40:39\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.6/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2024-07-18 02:49:24\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:6:\"5.2.21\";s:7:\"updated\";s:19:\"2019-06-10 16:18:28\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.21/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-11 19:32:39\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರಿಸು\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-11 06:34:23\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-15 17:52:24\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7.2/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"بهردهوام به\";}}s:3:\"kir\";a:8:{s:8:\"language\";s:3:\"kir\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-25 04:09:28\";s:12:\"english_name\";s:6:\"Kyrgyz\";s:11:\"native_name\";s:16:\"Кыргызча\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.7.2/kir.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ky\";i:2;s:3:\"kir\";i:3;s:3:\"kir\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Улантуу\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"6.5.5\";s:7:\"updated\";s:19:\"2024-06-13 13:11:03\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.5/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-13 10:34:12\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"6.0.9\";s:7:\"updated\";s:19:\"2022-10-01 09:23:52\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.9/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-15 17:14:39\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"6.5.5\";s:7:\"updated\";s:19:\"2024-06-20 17:22:06\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.5.5/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-15 06:59:18\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:6:\"5.5.15\";s:7:\"updated\";s:19:\"2022-03-11 13:52:22\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.5.15/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.2.38\";s:7:\"updated\";s:19:\"2017-12-26 11:57:10\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.38/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-01 17:56:33\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-08-30 11:32:23\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.6.2/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-22 23:03:55\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.7.2/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-13 08:54:35\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-16 22:03:12\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-18 10:59:16\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:6:\"4.8.25\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.25/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:15:\"Panjabi (India)\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-15 16:20:12\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.3.34\";s:7:\"updated\";s:19:\"2015-12-02 21:41:29\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.3.34/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2024-11-22 09:42:36\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.7.2/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-25 12:07:35\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-06 01:20:04\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2023-08-21 12:15:00\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.5/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-12 22:37:25\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-01-30 08:56:10\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:6:\"5.4.16\";s:7:\"updated\";s:19:\"2020-07-07 01:53:37\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/5.4.16/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-10 11:39:57\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"6.6.2\";s:7:\"updated\";s:19:\"2024-09-21 09:44:08\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.6.2/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2024-08-30 07:14:35\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-01-30 10:26:38\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2024-09-20 22:15:56\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-03 17:00:50\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-02 07:29:05\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:5:\"ta_LK\";a:8:{s:8:\"language\";s:5:\"ta_LK\";s:7:\"version\";s:6:\"4.2.38\";s:7:\"updated\";s:19:\"2015-12-03 01:07:44\";s:12:\"english_name\";s:17:\"Tamil (Sri Lanka)\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.38/ta_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"தொடர்க\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:6:\"5.8.10\";s:7:\"updated\";s:19:\"2022-06-08 04:30:30\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.8.10/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:6:\"4.8.25\";s:7:\"updated\";s:19:\"2017-09-30 09:04:29\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.25/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-14 00:21:51\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-03 01:12:45\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"6.4.5\";s:7:\"updated\";s:19:\"2024-03-06 18:52:07\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.5/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:6:\"5.4.16\";s:7:\"updated\";s:19:\"2020-04-09 11:17:33\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.4.16/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-14 03:58:28\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.7.2/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-02-12 08:54:01\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"6.7.2\";s:7:\"updated\";s:19:\"2025-03-05 06:01:29\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.7.2/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"6.2.6\";s:7:\"updated\";s:19:\"2022-07-15 15:25:03\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:12:\"香港中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.6/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','off'),
(49458,'_site_transient_timeout_theme_roots','1742184002','off'),
(49459,'_site_transient_theme_roots','a:4:{s:12:\"calcue-child\";s:7:\"/themes\";s:15:\"hello-elementor\";s:7:\"/themes\";s:4:\"kava\";s:7:\"/themes\";s:16:\"twentytwentyfive\";s:7:\"/themes\";}','off'),
(49468,'_site_transient_timeout_wp_theme_files_patterns-d1c1a7acb30c75d9405b0f08d99a9a27','1742186761','off'),
(49469,'_site_transient_wp_theme_files_patterns-d1c1a7acb30c75d9405b0f08d99a9a27','a:2:{s:7:\"version\";s:5:\"1.0.1\";s:8:\"patterns\";a:0:{}}','off'),
(49470,'_site_transient_timeout_wp_theme_files_patterns-4d68ce8dd98512d59d2c96b9c67a6c4e','1742186761','off'),
(49471,'_site_transient_wp_theme_files_patterns-4d68ce8dd98512d59d2c96b9c67a6c4e','a:2:{s:7:\"version\";s:5:\"2.1.2\";s:8:\"patterns\";a:0:{}}','off');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=6220 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_postmeta`
--
LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES
(1,711,'_jet_template_type','jet_footer'),
(2,711,'_jet_template_conditions','a:1:{i:0;a:5:{s:2:\"id\";s:14:\"_66583b742aa86\";s:7:\"include\";s:4:\"true\";s:5:\"group\";s:6:\"entire\";s:8:\"subGroup\";s:6:\"entire\";s:13:\"subGroupValue\";s:0:\"\";}}'),
(3,2465,'_jet_template_type','jet_footer'),
(4,2465,'_jet_template_conditions','a:1:{i:0;a:5:{s:2:\"id\";s:14:\"_66583b77cdca0\";s:7:\"include\";s:4:\"true\";s:5:\"group\";s:8:\"singular\";s:8:\"subGroup\";s:18:\"singular-post-type\";s:13:\"subGroupValue\";s:4:\"post\";}}'),
(5,1653,'_jet_template_type','jet_header'),
(6,1653,'_jet_template_conditions','a:1:{i:0;a:5:{s:2:\"id\";s:14:\"_66583b74bbb1e\";s:7:\"include\";s:4:\"true\";s:5:\"group\";s:6:\"entire\";s:8:\"subGroup\";s:6:\"entire\";s:13:\"subGroupValue\";s:0:\"\";}}'),
(7,758,'_jet_template_type','jet_header'),
(8,758,'_jet_template_conditions','a:1:{i:0;a:5:{s:2:\"id\";s:14:\"_66583b742bb08\";s:7:\"include\";s:4:\"true\";s:5:\"group\";s:8:\"singular\";s:8:\"subGroup\";s:19:\"singular-front-page\";s:13:\"subGroupValue\";s:0:\"\";}}'),
(9,2460,'_jet_template_type','jet_header'),
(10,2460,'_jet_template_conditions','a:1:{i:0;a:5:{s:2:\"id\";s:14:\"_66583b77ce5cf\";s:7:\"include\";s:4:\"true\";s:5:\"group\";s:8:\"singular\";s:8:\"subGroup\";s:18:\"singular-post-type\";s:13:\"subGroupValue\";s:4:\"post\";}}'),
(11,1636,'_jet_template_type','jet_archive'),
(12,1636,'_jet_template_conditions','a:1:{i:0;a:5:{s:2:\"id\";s:14:\"_66583b74bc5e4\";s:7:\"include\";s:4:\"true\";s:5:\"group\";s:7:\"archive\";s:8:\"subGroup\";s:17:\"archive-post-type\";s:13:\"subGroupValue\";s:4:\"post\";}}'),
(13,7,'_wp_attached_file','2021/03/fav.svg'),
(14,7,'_wp_attached_file','2021/03/fav.svg'),
(15,7,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:618;s:5:\"width\";d:512;s:6:\"height\";d:512;}'),
(16,7,'_wp_attachment_image_alt','fav'),
(18,7,'_wxr_import_user_slug','admin'),
(19,10,'_wp_attached_file','2021/03/map.svg'),
(20,10,'_wp_attached_file','2021/03/map.svg'),
(21,10,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:437324;s:5:\"width\";d:1160;s:6:\"height\";d:610;}'),
(22,10,'_wp_attachment_image_alt','map'),
(24,10,'_wxr_import_user_slug','admin'),
(25,36,'_wp_attached_file','2021/03/home_bg2.png'),
(26,36,'_wp_attached_file','2021/03/home_bg2.png'),
(27,36,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3840;s:6:\"height\";i:1678;s:4:\"file\";s:20:\"2021/03/home_bg2.png\";s:8:\"filesize\";i:1039;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"home_bg2-300x131.png\";s:5:\"width\";i:300;s:6:\"height\";i:131;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:101;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"home_bg2-1024x447.png\";s:5:\"width\";i:1024;s:6:\"height\";i:447;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:306;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"home_bg2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"home_bg2-768x336.png\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:194;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"home_bg2-1536x671.png\";s:5:\"width\";i:1536;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:586;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:21:\"home_bg2-2048x895.png\";s:5:\"width\";i:2048;s:6:\"height\";i:895;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1085;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:20:\"home_bg2-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:123;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:19:\"home_bg2-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:20:\"home_bg2-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:20:\"home_bg2-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:143;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:20:\"home_bg2-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:155;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:20:\"home_bg2-570x450.png\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:198;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:21:\"home_bg2-1170x650.png\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:459;}s:13:\"kava-thumb-xl\";a:5:{s:4:\"file\";s:22:\"home_bg2-1920x1080.png\";s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1089;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:20:\"home_bg2-600x262.png\";s:5:\"width\";i:600;s:6:\"height\";i:262;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:151;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:20:\"home_bg2-640x640.png\";s:5:\"width\";i:640;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:260;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:21:\"home_bg2-1280x640.png\";s:5:\"width\";i:1280;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:483;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(28,36,'_wp_attachment_image_alt','home_bg2'),
(29,36,'_wxr_import_user_slug','admin'),
(30,69,'_wp_attached_file','2021/03/fav-1.png'),
(31,69,'_wp_attached_file','2021/03/fav-1.png'),
(32,69,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:17:\"2021/03/fav-1.png\";s:8:\"filesize\";i:5224;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"fav-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11814;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"fav-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:5396;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:17:\"fav-1-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11105;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:16:\"fav-1-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3101;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:17:\"fav-1-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8648;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:17:\"fav-1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16352;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:17:\"fav-1-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15343;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:17:\"fav-1-512x450.png\";s:5:\"width\";i:512;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13057;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33,69,'_wp_attachment_image_alt','fav (1)'),
(34,69,'_wxr_import_user_slug','admin'),
(35,70,'_wp_attached_file','2021/03/cropped-fav-1.png'),
(36,70,'_wp_attached_file','2021/03/cropped-fav-1.png'),
(37,70,'_wp_attachment_context','site-icon'),
(38,70,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:25:\"2021/03/cropped-fav-1.png\";s:8:\"filesize\";i:12231;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"cropped-fav-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11813;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"cropped-fav-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:5401;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:25:\"cropped-fav-1-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11088;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:24:\"cropped-fav-1-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3096;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:25:\"cropped-fav-1-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8644;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:25:\"cropped-fav-1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16370;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:25:\"cropped-fav-1-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15374;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:25:\"cropped-fav-1-512x450.png\";s:5:\"width\";i:512;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13212;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(39,70,'_wp_attachment_image_alt','cropped-fav-1.png'),
(40,70,'_wxr_import_user_slug','admin'),
(41,623,'_wp_attached_file','2021/03/check-1.svg'),
(42,623,'_wp_attached_file','2021/03/check-1.svg'),
(43,623,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:566;s:5:\"width\";d:18;s:6:\"height\";d:15;}'),
(44,623,'_wp_attachment_image_alt','check'),
(46,623,'_wxr_import_user_slug','admin'),
(47,842,'_wp_attached_file','2021/03/logo1.svg'),
(48,842,'_wp_attached_file','2021/03/logo1.svg'),
(49,842,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:5181;s:5:\"width\";d:160;s:6:\"height\";d:48;}'),
(50,842,'_wp_attachment_image_alt','logo1'),
(52,842,'_wxr_import_user_slug','admin'),
(53,843,'_wp_attached_file','2021/03/logo2.svg'),
(54,843,'_wp_attached_file','2021/03/logo2.svg'),
(55,843,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:6849;s:5:\"width\";d:129;s:6:\"height\";d:39;}'),
(56,843,'_wp_attachment_image_alt','logo2'),
(58,843,'_wxr_import_user_slug','admin'),
(59,844,'_wp_attached_file','2021/03/logo3.svg'),
(60,844,'_wp_attached_file','2021/03/logo3.svg'),
(61,844,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:5948;s:5:\"width\";d:119;s:6:\"height\";d:37;}'),
(62,844,'_wp_attachment_image_alt','logo3'),
(64,844,'_wxr_import_user_slug','admin'),
(65,845,'_wp_attached_file','2021/03/logo4.svg'),
(66,845,'_wp_attached_file','2021/03/logo4.svg'),
(67,845,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:5681;s:5:\"width\";d:153;s:6:\"height\";d:34;}'),
(68,845,'_wp_attachment_image_alt','logo4'),
(70,845,'_wxr_import_user_slug','admin'),
(71,1021,'_wp_attached_file','2021/03/hand.svg'),
(72,1021,'_wp_attached_file','2021/03/hand.svg'),
(73,1021,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:1857;s:5:\"width\";d:36;s:6:\"height\";d:36;}'),
(74,1021,'_wp_attachment_image_alt','hand'),
(76,1021,'_wxr_import_user_slug','admin'),
(77,1022,'_wp_attached_file','2021/03/users.svg'),
(78,1022,'_wp_attached_file','2021/03/users.svg'),
(79,1022,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:1401;s:5:\"width\";d:36;s:6:\"height\";d:36;}'),
(80,1022,'_wp_attachment_image_alt','users'),
(82,1022,'_wxr_import_user_slug','admin'),
(83,1034,'_wp_attached_file','2021/03/hand-1.svg'),
(84,1034,'_wp_attached_file','2021/03/hand-1.svg'),
(85,1034,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:1858;s:5:\"width\";d:36;s:6:\"height\";d:36;}'),
(86,1034,'_wp_attachment_image_alt','hand'),
(88,1034,'_wxr_import_user_slug','admin'),
(89,1035,'_wp_attached_file','2021/03/users-1.svg'),
(90,1035,'_wp_attached_file','2021/03/users-1.svg'),
(91,1035,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:1407;s:5:\"width\";d:36;s:6:\"height\";d:36;}'),
(92,1035,'_wp_attachment_image_alt','users'),
(94,1035,'_wxr_import_user_slug','admin'),
(95,2017,'_wp_attached_file','2021/04/about_bg.png'),
(96,2017,'_wp_attached_file','2021/04/about_bg.png'),
(97,2017,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3840;s:6:\"height\";i:1344;s:4:\"file\";s:20:\"2021/04/about_bg.png\";s:8:\"filesize\";i:1386242;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"about_bg-300x105.png\";s:5:\"width\";i:300;s:6:\"height\";i:105;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28688;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"about_bg-1024x358.png\";s:5:\"width\";i:1024;s:6:\"height\";i:358;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:240560;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"about_bg-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18534;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"about_bg-768x269.png\";s:5:\"width\";i:768;s:6:\"height\";i:269;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:142707;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"about_bg-1536x538.png\";s:5:\"width\";i:1536;s:6:\"height\";i:538;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:504287;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:21:\"about_bg-2048x717.png\";s:5:\"width\";i:2048;s:6:\"height\";i:717;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:871421;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:20:\"about_bg-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:74763;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:19:\"about_bg-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14000;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:20:\"about_bg-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38815;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:20:\"about_bg-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:105053;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:20:\"about_bg-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:115390;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:20:\"about_bg-570x450.png\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:178104;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:21:\"about_bg-1170x650.png\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:504285;}s:13:\"kava-thumb-xl\";a:5:{s:4:\"file\";s:22:\"about_bg-1920x1080.png\";s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1294319;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:20:\"about_bg-600x210.png\";s:5:\"width\";i:600;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93093;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:20:\"about_bg-640x640.png\";s:5:\"width\";i:640;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:257247;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:21:\"about_bg-1280x640.png\";s:5:\"width\";i:1280;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:531135;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(98,2017,'_wp_attachment_image_alt','about_bg'),
(99,2017,'_wxr_import_user_slug','admin'),
(100,2018,'_wp_attached_file','2021/04/about_img2.png'),
(101,2018,'_wp_attached_file','2021/04/about_img2.png'),
(102,2018,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:920;s:6:\"height\";i:1228;s:4:\"file\";s:22:\"2021/04/about_img2.png\";s:8:\"filesize\";i:380362;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"about_img2-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:74459;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"about_img2-767x1024.png\";s:5:\"width\";i:767;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:757584;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"about_img2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28997;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"about_img2-768x1025.png\";s:5:\"width\";i:768;s:6:\"height\";i:1025;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:759722;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:22:\"about_img2-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100414;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:21:\"about_img2-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16183;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:22:\"about_img2-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61708;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:22:\"about_img2-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:166731;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:22:\"about_img2-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:186428;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:22:\"about_img2-570x450.png\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:265438;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:22:\"about_img2-920x650.png\";s:5:\"width\";i:920;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:268229;}s:13:\"kava-thumb-xl\";a:5:{s:4:\"file\";s:23:\"about_img2-920x1080.png\";s:5:\"width\";i:920;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:421163;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:22:\"about_img2-600x801.png\";s:5:\"width\";i:600;s:6:\"height\";i:801;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:472764;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:22:\"about_img2-640x640.png\";s:5:\"width\";i:640;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:421796;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:22:\"about_img2-920x640.png\";s:5:\"width\";i:920;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:263463;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(103,2018,'_wp_attachment_image_alt','about_img2'),
(104,2018,'_wxr_import_user_slug','admin'),
(105,2028,'_wp_attached_file','2021/04/businessman-man.png'),
(106,2028,'_wp_attached_file','2021/04/businessman-man.png'),
(107,2028,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1120;s:6:\"height\";i:840;s:4:\"file\";s:27:\"2021/04/businessman-man.png\";s:8:\"filesize\";i:308257;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"businessman-man-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84042;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"businessman-man-1024x768.png\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:777893;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"businessman-man-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32498;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"businessman-man-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:458577;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:27:\"businessman-man-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:116685;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:26:\"businessman-man-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20051;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:27:\"businessman-man-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67968;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:27:\"businessman-man-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:181565;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:27:\"businessman-man-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:204283;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:27:\"businessman-man-570x450.png\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:276062;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:28:\"businessman-man-1120x650.png\";s:5:\"width\";i:1120;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:307319;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:27:\"businessman-man-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:289704;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:27:\"businessman-man-640x640.png\";s:5:\"width\";i:640;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:432311;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:28:\"businessman-man-1120x640.png\";s:5:\"width\";i:1120;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:303613;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(108,2028,'_wp_attachment_image_alt','businessman-man'),
(109,2028,'_wxr_import_user_slug','admin'),
(110,2029,'_wp_attached_file','2021/04/businessman.png'),
(111,2029,'_wp_attached_file','2021/04/businessman.png'),
(112,2029,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1120;s:6:\"height\";i:840;s:4:\"file\";s:23:\"2021/04/businessman.png\";s:8:\"filesize\";i:302219;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"businessman-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73627;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"businessman-1024x768.png\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:761514;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"businessman-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27967;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"businessman-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:425549;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:23:\"businessman-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:103013;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:22:\"businessman-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17406;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:23:\"businessman-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58726;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:23:\"businessman-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:154650;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:23:\"businessman-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:167333;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:23:\"businessman-570x450.png\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:246281;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:24:\"businessman-1120x650.png\";s:5:\"width\";i:1120;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:292171;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:23:\"businessman-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:257267;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:23:\"businessman-640x640.png\";s:5:\"width\";i:640;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:397883;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:24:\"businessman-1120x640.png\";s:5:\"width\";i:1120;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:288076;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(113,2029,'_wp_attachment_image_alt','businessman'),
(114,2029,'_wxr_import_user_slug','admin'),
(115,2030,'_wp_attached_file','2021/04/img.png'),
(116,2030,'_wp_attached_file','2021/04/img.png'),
(117,2030,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1120;s:6:\"height\";i:840;s:4:\"file\";s:15:\"2021/04/img.png\";s:8:\"filesize\";i:345615;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"img-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93755;}s:5:\"large\";a:5:{s:4:\"file\";s:16:\"img-1024x768.png\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:875144;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"img-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37549;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"img-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:507321;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:15:\"img-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:130652;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:14:\"img-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21865;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:15:\"img-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79003;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:15:\"img-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:205238;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:15:\"img-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:235620;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:15:\"img-570x450.png\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:304648;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:16:\"img-1120x650.png\";s:5:\"width\";i:1120;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:348999;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:15:\"img-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:317735;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:15:\"img-640x640.png\";s:5:\"width\";i:640;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:491530;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:16:\"img-1120x640.png\";s:5:\"width\";i:1120;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:344402;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(118,2030,'_wp_attachment_image_alt','img'),
(119,2030,'_wxr_import_user_slug','admin'),
(120,2031,'_wp_attached_file','2021/04/img1.png'),
(121,2031,'_wp_attached_file','2021/04/img1.png'),
(122,2031,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:540;s:4:\"file\";s:16:\"2021/04/img1.png\";s:8:\"filesize\";i:147127;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"img1-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90465;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"img1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35208;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:16:\"img1-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:127352;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:15:\"img1-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22066;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:16:\"img1-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:74442;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:16:\"img1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:200235;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:16:\"img1-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:220362;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:16:\"img1-570x450.png\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:301232;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:16:\"img1-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:314426;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:16:\"img1-640x540.png\";s:5:\"width\";i:640;s:6:\"height\";i:540;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:167614;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(123,2031,'_wp_attachment_image_alt','img1'),
(124,2031,'_wxr_import_user_slug','admin'),
(125,2032,'_wp_attached_file','2021/04/img2.png'),
(126,2032,'_wp_attached_file','2021/04/img2.png'),
(127,2032,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:540;s:4:\"file\";s:16:\"2021/04/img2.png\";s:8:\"filesize\";i:126422;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"img2-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77732;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"img2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30805;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:16:\"img2-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:108792;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:15:\"img2-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19000;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:16:\"img2-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63846;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:16:\"img2-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:173949;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:16:\"img2-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:190224;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:16:\"img2-570x450.png\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:267675;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:16:\"img2-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:277203;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:16:\"img2-640x540.png\";s:5:\"width\";i:640;s:6:\"height\";i:540;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:143684;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(128,2032,'_wp_attachment_image_alt','img2'),
(129,2032,'_wxr_import_user_slug','admin'),
(130,2033,'_wp_attached_file','2021/04/img3.png'),
(131,2033,'_wp_attached_file','2021/04/img3.png'),
(132,2033,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:540;s:4:\"file\";s:16:\"2021/04/img3.png\";s:8:\"filesize\";i:153177;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"img3-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57946;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"img3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21830;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:16:\"img3-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85716;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:15:\"img3-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13086;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:16:\"img3-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48582;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:16:\"img3-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:148442;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:16:\"img3-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:179440;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:16:\"img3-570x450.png\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:230498;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:16:\"img3-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:241010;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:16:\"img3-640x540.png\";s:5:\"width\";i:640;s:6:\"height\";i:540;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:170104;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(133,2033,'_wp_attachment_image_alt','img3'),
(134,2033,'_wxr_import_user_slug','admin'),
(135,2034,'_wp_attached_file','2021/04/img4.png'),
(136,2034,'_wp_attached_file','2021/04/img4.png'),
(137,2034,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:540;s:4:\"file\";s:16:\"2021/04/img4.png\";s:8:\"filesize\";i:131597;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"img4-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:76159;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"img4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28537;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:16:\"img4-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107504;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:15:\"img4-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17556;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:16:\"img4-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60022;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:16:\"img4-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:167834;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:16:\"img4-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:178082;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:16:\"img4-570x450.png\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:267565;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:16:\"img4-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:279117;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:16:\"img4-640x540.png\";s:5:\"width\";i:640;s:6:\"height\";i:540;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:145049;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(138,2034,'_wp_attachment_image_alt','img4'),
(139,2034,'_wxr_import_user_slug','admin'),
(140,2035,'_wp_attached_file','2021/04/img5.png'),
(141,2035,'_wp_attached_file','2021/04/img5.png'),
(142,2035,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1120;s:6:\"height\";i:840;s:4:\"file\";s:16:\"2021/04/img5.png\";s:8:\"filesize\";i:325768;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"img5-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:91568;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"img5-1024x768.png\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:823581;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"img5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36200;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"img5-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:485581;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:16:\"img5-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:126422;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:15:\"img5-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21472;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:16:\"img5-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75650;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:16:\"img5-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:197302;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:16:\"img5-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:218517;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:16:\"img5-570x450.png\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:295388;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:17:\"img5-1120x650.png\";s:5:\"width\";i:1120;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:318335;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:16:\"img5-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:308057;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:16:\"img5-640x640.png\";s:5:\"width\";i:640;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:464777;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:17:\"img5-1120x640.png\";s:5:\"width\";i:1120;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:313600;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(143,2035,'_wp_attachment_image_alt','img5'),
(144,2035,'_wxr_import_user_slug','admin'),
(145,2036,'_wp_attached_file','2021/04/home_bg.png'),
(146,2036,'_wp_attached_file','2021/04/home_bg.png'),
(147,2036,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3840;s:6:\"height\";i:1860;s:4:\"file\";s:19:\"2021/04/home_bg.png\";s:8:\"filesize\";i:1068234;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"home_bg-300x145.png\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25571;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"home_bg-1024x496.png\";s:5:\"width\";i:1024;s:6:\"height\";i:496;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:232169;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"home_bg-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15256;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"home_bg-768x372.png\";s:5:\"width\";i:768;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132773;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"home_bg-1536x744.png\";s:5:\"width\";i:1536;s:6:\"height\";i:744;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:486604;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:20:\"home_bg-2048x992.png\";s:5:\"width\";i:2048;s:6:\"height\";i:992;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:856344;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:19:\"home_bg-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54697;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:18:\"home_bg-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9188;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:19:\"home_bg-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32074;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:19:\"home_bg-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:86443;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:19:\"home_bg-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:88190;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:19:\"home_bg-570x450.png\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:134589;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:20:\"home_bg-1170x650.png\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:350682;}s:13:\"kava-thumb-xl\";a:5:{s:4:\"file\";s:21:\"home_bg-1920x1080.png\";s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:933849;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:19:\"home_bg-600x291.png\";s:5:\"width\";i:600;s:6:\"height\";i:291;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:86542;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:19:\"home_bg-640x640.png\";s:5:\"width\";i:640;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:210473;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:20:\"home_bg-1280x640.png\";s:5:\"width\";i:1280;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:361019;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(148,2036,'_wp_attachment_image_alt','home_bg'),
(149,2036,'_wxr_import_user_slug','admin'),
(150,2037,'_wp_attached_file','2021/04/home_bg2.png'),
(151,2037,'_wp_attached_file','2021/04/home_bg2.png'),
(152,2037,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3840;s:6:\"height\";i:1344;s:4:\"file\";s:20:\"2021/04/home_bg2.png\";s:8:\"filesize\";i:1235610;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"home_bg2-300x105.png\";s:5:\"width\";i:300;s:6:\"height\";i:105;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30355;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"home_bg2-1024x358.png\";s:5:\"width\";i:1024;s:6:\"height\";i:358;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:240789;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"home_bg2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20415;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"home_bg2-768x269.png\";s:5:\"width\";i:768;s:6:\"height\";i:269;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:145519;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"home_bg2-1536x538.png\";s:5:\"width\";i:1536;s:6:\"height\";i:538;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:492732;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:21:\"home_bg2-2048x717.png\";s:5:\"width\";i:2048;s:6:\"height\";i:717;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:837665;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:20:\"home_bg2-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75798;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:19:\"home_bg2-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14515;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:20:\"home_bg2-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41149;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:20:\"home_bg2-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:105573;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:20:\"home_bg2-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:113160;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:20:\"home_bg2-570x450.png\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:167842;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:21:\"home_bg2-1170x650.png\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:464818;}s:13:\"kava-thumb-xl\";a:5:{s:4:\"file\";s:22:\"home_bg2-1920x1080.png\";s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1134583;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:20:\"home_bg2-600x210.png\";s:5:\"width\";i:600;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:96228;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:20:\"home_bg2-640x640.png\";s:5:\"width\";i:640;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:242444;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:21:\"home_bg2-1280x640.png\";s:5:\"width\";i:1280;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:499927;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(153,2037,'_wp_attachment_image_alt','home_bg2'),
(154,2037,'_wxr_import_user_slug','admin'),
(155,2038,'_wp_attached_file','2021/04/img_home.png'),
(156,2038,'_wp_attached_file','2021/04/img_home.png'),
(157,2038,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:920;s:6:\"height\";i:1228;s:4:\"file\";s:20:\"2021/04/img_home.png\";s:8:\"filesize\";i:363477;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"img_home-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78312;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"img_home-767x1024.png\";s:5:\"width\";i:767;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:762274;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"img_home-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30658;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"img_home-768x1025.png\";s:5:\"width\";i:768;s:6:\"height\";i:1025;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:764140;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:20:\"img_home-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107922;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:19:\"img_home-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17659;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:20:\"img_home-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64606;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:20:\"img_home-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:171502;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:20:\"img_home-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:193309;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:20:\"img_home-570x450.png\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:264922;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:20:\"img_home-920x650.png\";s:5:\"width\";i:920;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:241541;}s:13:\"kava-thumb-xl\";a:5:{s:4:\"file\";s:21:\"img_home-920x1080.png\";s:5:\"width\";i:920;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:394417;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:20:\"img_home-600x801.png\";s:5:\"width\";i:600;s:6:\"height\";i:801;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:476521;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:20:\"img_home-640x640.png\";s:5:\"width\";i:640;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:416238;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:20:\"img_home-920x640.png\";s:5:\"width\";i:920;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:237567;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(158,2038,'_wp_attachment_image_alt','img_home'),
(159,2038,'_wxr_import_user_slug','admin'),
(160,2039,'_wp_attached_file','2021/04/img6.png'),
(161,2039,'_wp_attached_file','2021/04/img6.png'),
(162,2039,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:540;s:4:\"file\";s:16:\"2021/04/img6.png\";s:8:\"filesize\";i:158906;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"img6-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93375;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"img6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37504;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:16:\"img6-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:130063;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:15:\"img6-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21745;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:16:\"img6-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78191;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:16:\"img6-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:208485;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:16:\"img6-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:236014;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:16:\"img6-570x450.png\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:310598;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:16:\"img6-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:323501;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:16:\"img6-640x540.png\";s:5:\"width\";i:640;s:6:\"height\";i:540;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:183858;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(163,2039,'_wp_attachment_image_alt','img6'),
(164,2039,'_wxr_import_user_slug','admin'),
(165,2040,'_wp_attached_file','2021/04/img7.png'),
(166,2040,'_wp_attached_file','2021/04/img7.png'),
(167,2040,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:540;s:4:\"file\";s:16:\"2021/04/img7.png\";s:8:\"filesize\";i:141525;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"img7-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93288;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"img7-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35599;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:16:\"img7-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:130410;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:15:\"img7-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22017;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:16:\"img7-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:74197;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:16:\"img7-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:197283;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:16:\"img7-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:207891;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:16:\"img7-570x450.png\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:305364;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:16:\"img7-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:321440;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:16:\"img7-640x540.png\";s:5:\"width\";i:640;s:6:\"height\";i:540;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:155918;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(168,2040,'_wp_attachment_image_alt','img7'),
(169,2040,'_wxr_import_user_slug','admin'),
(170,2041,'_wp_attached_file','2021/04/img8.png'),
(171,2041,'_wp_attached_file','2021/04/img8.png'),
(172,2041,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1120;s:6:\"height\";i:840;s:4:\"file\";s:16:\"2021/04/img8.png\";s:8:\"filesize\";i:359405;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"img8-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93535;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"img8-1024x768.png\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:937003;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"img8-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34113;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"img8-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:544122;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:16:\"img8-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133191;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:15:\"img8-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21365;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:16:\"img8-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75582;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:16:\"img8-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:210073;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:16:\"img8-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:240097;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:16:\"img8-570x450.png\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:324672;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:17:\"img8-1120x650.png\";s:5:\"width\";i:1120;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:354839;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:16:\"img8-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:339727;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:16:\"img8-640x640.png\";s:5:\"width\";i:640;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:511105;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:17:\"img8-1120x640.png\";s:5:\"width\";i:1120;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:350338;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(173,2041,'_wp_attachment_image_alt','img8'),
(174,2041,'_wxr_import_user_slug','admin'),
(175,2042,'_wp_attached_file','2021/04/img9.png'),
(176,2042,'_wp_attached_file','2021/04/img9.png'),
(177,2042,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1120;s:6:\"height\";i:840;s:4:\"file\";s:16:\"2021/04/img9.png\";s:8:\"filesize\";i:304174;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"img9-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77775;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"img9-1024x768.png\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:734676;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"img9-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31648;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"img9-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:429711;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:16:\"img9-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:109005;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:15:\"img9-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19641;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:16:\"img9-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:65766;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:16:\"img9-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:173860;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:16:\"img9-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:192373;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:16:\"img9-570x450.png\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:260533;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:17:\"img9-1120x650.png\";s:5:\"width\";i:1120;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:307297;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:16:\"img9-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:269179;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:16:\"img9-640x640.png\";s:5:\"width\";i:640;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:414444;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:17:\"img9-1120x640.png\";s:5:\"width\";i:1120;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:303634;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(178,2042,'_wp_attachment_image_alt','img9'),
(179,2042,'_wxr_import_user_slug','admin'),
(180,2043,'_wp_attached_file','2021/04/team1.png'),
(181,2043,'_wp_attached_file','2021/04/team1.png'),
(182,2043,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:520;s:6:\"height\";i:696;s:4:\"file\";s:17:\"2021/04/team1.png\";s:8:\"filesize\";i:127801;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"team1-224x300.png\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69822;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"team1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26592;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:17:\"team1-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93460;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:16:\"team1-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15093;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:17:\"team1-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55723;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:17:\"team1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:154232;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:17:\"team1-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:178236;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:17:\"team1-520x450.png\";s:5:\"width\";i:520;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102681;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:17:\"team1-520x650.png\";s:5:\"width\";i:520;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:149554;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:17:\"team1-520x640.png\";s:5:\"width\";i:520;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147778;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:17:\"team1-520x640.png\";s:5:\"width\";i:520;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147778;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(183,2043,'_wp_attachment_image_alt','team1'),
(184,2043,'_wxr_import_user_slug','admin'),
(185,2044,'_wp_attached_file','2021/04/team2.png'),
(186,2044,'_wp_attached_file','2021/04/team2.png'),
(187,2044,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:520;s:6:\"height\";i:696;s:4:\"file\";s:17:\"2021/04/team2.png\";s:8:\"filesize\";i:146149;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"team2-224x300.png\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:74176;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"team2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27429;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:17:\"team2-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102587;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:16:\"team2-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15477;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:17:\"team2-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58498;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:17:\"team2-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:169505;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:17:\"team2-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:197092;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:17:\"team2-520x450.png\";s:5:\"width\";i:520;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:116874;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:17:\"team2-520x650.png\";s:5:\"width\";i:520;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:172056;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:17:\"team2-520x640.png\";s:5:\"width\";i:520;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:169819;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:17:\"team2-520x640.png\";s:5:\"width\";i:520;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:169819;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(188,2044,'_wp_attachment_image_alt','team2'),
(189,2044,'_wxr_import_user_slug','admin'),
(190,2045,'_wp_attached_file','2021/04/team3.png'),
(191,2045,'_wp_attached_file','2021/04/team3.png'),
(192,2045,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:520;s:6:\"height\";i:696;s:4:\"file\";s:17:\"2021/04/team3.png\";s:8:\"filesize\";i:155472;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"team3-224x300.png\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:71206;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"team3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28029;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:17:\"team3-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:108704;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:16:\"team3-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16742;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:17:\"team3-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60057;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:17:\"team3-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:172011;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:17:\"team3-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:188742;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:17:\"team3-520x450.png\";s:5:\"width\";i:520;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132908;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:17:\"team3-520x650.png\";s:5:\"width\";i:520;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:177674;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:17:\"team3-520x640.png\";s:5:\"width\";i:520;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:175829;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:17:\"team3-520x640.png\";s:5:\"width\";i:520;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:175829;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(193,2045,'_wp_attachment_image_alt','team3'),
(194,2045,'_wxr_import_user_slug','admin'),
(195,2046,'_wp_attached_file','2021/04/team4.png'),
(196,2046,'_wp_attached_file','2021/04/team4.png'),
(197,2046,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:520;s:6:\"height\";i:696;s:4:\"file\";s:17:\"2021/04/team4.png\";s:8:\"filesize\";i:118880;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"team4-224x300.png\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:76801;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"team4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29518;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:17:\"team4-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:112782;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:16:\"team4-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17240;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:17:\"team4-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63346;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:17:\"team4-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:177705;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:17:\"team4-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:200186;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:17:\"team4-520x450.png\";s:5:\"width\";i:520;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102797;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:17:\"team4-520x650.png\";s:5:\"width\";i:520;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139443;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:17:\"team4-520x640.png\";s:5:\"width\";i:520;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:137659;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:17:\"team4-520x640.png\";s:5:\"width\";i:520;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:137659;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(198,2046,'_wp_attachment_image_alt','team4'),
(199,2046,'_wxr_import_user_slug','admin'),
(200,2047,'_wp_attached_file','2021/04/team5.png'),
(201,2047,'_wp_attached_file','2021/04/team5.png'),
(202,2047,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1040;s:6:\"height\";i:1392;s:4:\"file\";s:17:\"2021/04/team5.png\";s:8:\"filesize\";i:387961;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"team5-224x300.png\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61395;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"team5-765x1024.png\";s:5:\"width\";i:765;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:625521;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"team5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24583;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"team5-768x1028.png\";s:5:\"width\";i:768;s:6:\"height\";i:1028;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:631276;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:17:\"team5-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:88801;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:16:\"team5-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13849;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:17:\"team5-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51343;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:17:\"team5-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:140015;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:17:\"team5-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:154849;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:17:\"team5-570x450.png\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:222072;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:18:\"team5-1040x650.png\";s:5:\"width\";i:1040;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:238859;}s:13:\"kava-thumb-xl\";a:5:{s:4:\"file\";s:19:\"team5-1040x1080.png\";s:5:\"width\";i:1040;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:387465;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:17:\"team5-600x803.png\";s:5:\"width\";i:600;s:6:\"height\";i:803;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:387426;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:17:\"team5-640x640.png\";s:5:\"width\";i:640;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:345076;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:18:\"team5-1040x640.png\";s:5:\"width\";i:1040;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:235033;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(203,2047,'_wp_attachment_image_alt','team5'),
(204,2047,'_wxr_import_user_slug','admin'),
(205,2048,'_wp_attached_file','2021/04/team6.png'),
(206,2048,'_wp_attached_file','2021/04/team6.png'),
(207,2048,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:520;s:6:\"height\";i:696;s:4:\"file\";s:17:\"2021/04/team6.png\";s:8:\"filesize\";i:144805;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"team6-224x300.png\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77399;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"team6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28935;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:17:\"team6-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:104032;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:16:\"team6-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16056;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:17:\"team6-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61191;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:17:\"team6-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:168995;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:17:\"team6-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:197265;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:17:\"team6-520x450.png\";s:5:\"width\";i:520;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107767;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:17:\"team6-520x650.png\";s:5:\"width\";i:520;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:160404;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:17:\"team6-520x640.png\";s:5:\"width\";i:520;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157703;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:17:\"team6-520x640.png\";s:5:\"width\";i:520;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157703;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(208,2048,'_wp_attachment_image_alt','team6'),
(209,2048,'_wxr_import_user_slug','admin'),
(210,2049,'_wp_attached_file','2021/04/team7.png'),
(211,2049,'_wp_attached_file','2021/04/team7.png'),
(212,2049,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:520;s:6:\"height\";i:696;s:4:\"file\";s:17:\"2021/04/team7.png\";s:8:\"filesize\";i:133834;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"team7-224x300.png\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:76360;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"team7-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28235;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:17:\"team7-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100429;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:16:\"team7-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16951;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:17:\"team7-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58346;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:17:\"team7-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157894;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:17:\"team7-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:189338;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:17:\"team7-520x450.png\";s:5:\"width\";i:520;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:106167;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:17:\"team7-520x650.png\";s:5:\"width\";i:520;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:154105;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:17:\"team7-520x640.png\";s:5:\"width\";i:520;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:151671;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:17:\"team7-520x640.png\";s:5:\"width\";i:520;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:151671;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(213,2049,'_wp_attachment_image_alt','team7'),
(214,2049,'_wxr_import_user_slug','admin'),
(215,2125,'_wp_attached_file','2021/04/blog1.jpeg'),
(216,2125,'_wp_attached_file','2021/04/blog1.jpeg'),
(217,2125,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1067;s:4:\"file\";s:18:\"2021/04/blog1.jpeg\";s:8:\"filesize\";i:132393;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"blog1-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15177;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"blog1-1024x683.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94970;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"blog1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7477;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"blog1-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61569;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"blog1-1536x1024.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171140;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:18:\"blog1-370x265.jpeg\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22493;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:17:\"blog1-150x85.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4676;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:18:\"blog1-230x230.jpeg\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14438;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:18:\"blog1-400x400.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32777;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:18:\"blog1-370x500.jpeg\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35056;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:18:\"blog1-570x450.jpeg\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46135;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:19:\"blog1-1170x650.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97719;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:18:\"blog1-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42696;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:18:\"blog1-640x640.jpeg\";s:5:\"width\";i:640;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66203;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:19:\"blog1-1280x640.jpeg\";s:5:\"width\";i:1280;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98770;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(218,2125,'_wp_attachment_image_alt','blog1'),
(219,2125,'_wxr_import_user_slug','admin'),
(220,2126,'_wp_attached_file','2021/04/blog2.jpeg'),
(221,2126,'_wp_attached_file','2021/04/blog2.jpeg'),
(222,2126,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1067;s:4:\"file\";s:18:\"2021/04/blog2.jpeg\";s:8:\"filesize\";i:119248;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"blog2-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11841;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"blog2-1024x683.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78181;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"blog2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5930;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"blog2-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49618;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"blog2-1536x1024.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146572;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:18:\"blog2-370x265.jpeg\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17606;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:17:\"blog2-150x85.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3651;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:18:\"blog2-230x230.jpeg\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11408;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:18:\"blog2-400x400.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26170;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:18:\"blog2-370x500.jpeg\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29028;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:18:\"blog2-570x450.jpeg\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37279;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:19:\"blog2-1170x650.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81963;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:18:\"blog2-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33983;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:18:\"blog2-640x640.jpeg\";s:5:\"width\";i:640;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53720;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:19:\"blog2-1280x640.jpeg\";s:5:\"width\";i:1280;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85518;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(223,2126,'_wp_attachment_image_alt','blog2'),
(224,2126,'_wxr_import_user_slug','admin'),
(225,67,'_elementor_template_type','kit'),
(226,67,'_elementor_edit_mode','builder'),
(227,67,'_elementor_version','3.1.4'),
(228,67,'_wp_page_template','default'),
(229,67,'_elementor_page_settings','a:1:{s:16:\"site_description\";s:0:\"\";}'),
(230,67,'_wxr_import_user_slug','admin'),
(231,212,'_wxr_import_user_slug','admin'),
(250,711,'_elementor_template_type','jet_footer'),
(251,711,'_elementor_page_settings','a:2:{s:14:\"jet_conditions\";a:0:{}s:14:\"conditions_top\";s:6:\"entire\";}'),
(252,711,'_elementor_edit_mode','builder'),
(253,711,'_elementor_version','3.21.8'),
(254,711,'_wp_page_template','default'),
(255,711,'_elementor_data','[{\"id\":\"c6cdc02\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3669a50\"}],\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#2E2C39\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"195739d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"5557bd3\",\"elType\":\"widget\",\"settings\":{\"logo_type\":\"image\",\"logo_image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2021\\/03\\/BTPayments-white.png\",\"id\":2705,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-logo\"},{\"id\":\"c1053aa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>BTPayments provides digital currency payments for your business, and you can freely choose to settle in digital currency or US dollars.<\\/p><p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]},\"typography_font_style\":\"italic\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e9211c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0f9f564\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90bda9f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Crypto Payments\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a418169\"},{\"_id\":\"e541c37\",\"text\":\"Payment Currency Lists\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"\\/developer\\/#developerPaymentCurrencyLists\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"11dea88\",\"text\":\"Wallet Lists\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"\\/developer\\/#developerWalletLists\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_color_hover\":\"#509BF6\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"b049b5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"65f2122\",\"elType\":\"widget\",\"settings\":{\"title\":\"Developer\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23de359\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Introduction\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a418169\",\"link\":{\"url\":\"\\/developer\\/#developerIntroduction\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"API Guidelines\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"86466c0\",\"link\":{\"url\":\"\\/developer\\/#developerAPIGuidelines\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Quick Start\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"528c1ce\",\"link\":{\"url\":\"\\/developer\\/#developerQuickStart\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"SDK\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"\\/developer\\/#developerSDK\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"01ea6da\"}],\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_color_hover\":\"#509BF6\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d1a8017\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"color_link\":\"#FFFFFF\",\"color_link_hover\":\"#509BF6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"101692b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a4f205\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>11 Round Lake Rd STE 4 Ballston Lake, NY 12019<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),
(257,711,'_wxr_import_user_slug','admin'),
(258,758,'_elementor_template_type','jet_header'),
(259,758,'_elementor_page_settings','a:3:{s:14:\"jet_conditions\";a:0:{}s:14:\"conditions_top\";s:8:\"singular\";s:23:\"conditions_sub_singular\";s:19:\"singular-front-page\";}'),
(260,758,'_elementor_edit_mode','builder'),
(261,758,'_elementor_version','3.1.4'),
(262,758,'_wp_page_template','default'),
(263,758,'_elementor_data','[{\"id\":\"0e1ba69\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"1c03896\"}],\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"z_index\":4},\"elements\":[{\"id\":\"39a8e3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.5,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":19,\"align_tablet\":\"flex-start\",\"align_mobile\":\"space-between\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"cd0021f\",\"elType\":\"widget\",\"settings\":{\"logo_type\":\"image\",\"logo_image\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/04\\/logo.svg\",\"id\":2268},\"_element_width\":\"auto\",\"logo_alignment_tablet\":\"flex-end\",\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"auto\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-logo\"}],\"isInner\":false},{\"id\":\"692e893\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":46.016,\"content_position\":\"center\",\"_inline_size_tablet\":55,\"align_tablet\":\"center\",\"align_mobile\":\"flex-end\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"363e952\",\"elType\":\"widget\",\"settings\":{\"menu\":\"8\",\"_element_width\":\"auto\",\"menu_container_border_border\":\"solid\",\"menu_container_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"01\",\"isLinked\":false},\"menu_container_border_color\":\"#2E2C39\",\"menu_container_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"03\",\"isLinked\":false},\"top_item_typography_typography\":\"custom\",\"top_item_typography_font_family\":\"Inter\",\"top_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"top_item_typography_font_weight\":\"400\",\"top_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"top_item_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"top_item_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"016\",\"bottom\":\"7\",\"left\":\"016\",\"isLinked\":false},\"top_level_badge_order\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"top_level_arrow_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"top_level_arrow_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"05\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"018\",\"isLinked\":false},\"top_item_text_color_hover\":\"#ABABB0\",\"top_item_text_color_active\":\"#ABABB0\",\"simple_sub_panel_width\":{\"unit\":\"px\",\"size\":190,\"sizes\":[]},\"simple_sub_panel_box_shadow_box_shadow_type\":\"yes\",\"simple_sub_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.06)\"},\"simple_sub_panel_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"simple_sub_panel_padding\":{\"unit\":\"px\",\"top\":\"014\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"simple_sub_panel_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"sub_menu_item_typography_typography\":\"custom\",\"sub_menu_item_typography_font_family\":\"Inter\",\"sub_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_menu_item_typography_font_weight\":\"400\",\"sub_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"sub_menu_item_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_item_text_color\":\"#2E2C39\",\"sub_item_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"021\",\"isLinked\":false},\"sub_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_item_text_color_hover\":\"#509BF6\",\"sub_item_text_color_active\":\"#509BF6\",\"mobile_menu\":\"2\",\"container-position\":\"left\",\"menu_container_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"toggle_icon_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"container_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"auto\",\"item_label_color\":\"#2E2C39\",\"item_label_color_hover\":\"#509BF6\",\"item_label_color_active\":\"#509BF6\",\"top_item_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-mega-menu\"}],\"isInner\":false},{\"id\":\"ed8e996\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.148,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_tablet\":26,\"align_tablet\":\"flex-end\",\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_order_mobile\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"5966df0\",\"elType\":\"widget\",\"settings\":{\"selected_button_icon_normal\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"button_label_normal\":\"+1(505) 555-0125\",\"selected_button_icon_hover\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"button_label_hover\":\"+1(505) 555-0125\",\"button_url\":{\"url\":\"tel:+1(505)555-0125\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"normal_icon_color\":\"#509BF6\",\"normal_icon_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"normal_icon_box_width\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"normal_icon_box_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"normal_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_icon_color\":\"#509BF6\",\"hover_icon_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_icon_box_width\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_icon_box_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"normal_label_typography_font_weight\":\"500\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_weight\":\"500\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_alignment_mobile\":\"center\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3110d30\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#2E2C39\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false}]'),
(264,758,'_elementor_controls_usage','a:5:{s:8:\"jet-logo\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:9:\"logo_type\";i:1;s:10:\"logo_image\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_width_tablet\";i:1;s:21:\"_element_width_mobile\";i:1;}s:14:\"_section_style\";a:1:{s:15:\"_padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:10:\"logo_style\";a:1:{s:21:\"logo_alignment_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:9:{s:12:\"_inline_size\";i:3;s:16:\"content_position\";i:3;s:19:\"_inline_size_tablet\";i:3;s:12:\"align_tablet\";i:3;s:12:\"align_mobile\";i:3;s:19:\"column_order_mobile\";i:3;s:19:\"_inline_size_mobile\";i:2;s:23:\"content_position_tablet\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:3;s:14:\"padding_mobile\";i:3;}}}}s:13:\"jet-mega-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"section_general\";a:2:{s:4:\"menu\";i:1;s:11:\"mobile_menu\";i:1;}s:21:\"section_mobile_layout\";a:1:{s:18:\"container-position\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_width_tablet\";i:1;s:21:\"_element_width_mobile\";i:1;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:8:{s:28:\"section_menu_container_style\";a:5:{s:28:\"menu_container_border_border\";i:1;s:27:\"menu_container_border_width\";i:1;s:27:\"menu_container_border_color\";i:1;s:22:\"menu_container_padding\";i:1;s:34:\"menu_container_border_width_tablet\";i:1;}s:23:\"section_main_menu_style\";a:10:{s:30:\"top_item_typography_typography\";i:1;s:31:\"top_item_typography_font_family\";i:1;s:29:\"top_item_typography_font_size\";i:1;s:31:\"top_item_typography_font_weight\";i:1;s:31:\"top_item_typography_line_height\";i:1;s:34:\"top_item_typography_letter_spacing\";i:1;s:16:\"top_item_padding\";i:1;s:25:\"top_item_text_color_hover\";i:1;s:26:\"top_item_text_color_active\";i:1;s:23:\"top_item_padding_tablet\";i:1;}s:19:\"section_badge_style\";a:1:{s:21:\"top_level_badge_order\";i:1;}s:19:\"section_arrow_style\";a:2:{s:20:\"top_level_arrow_size\";i:1;s:22:\"top_level_arrow_margin\";i:1;}s:22:\"section_sub_menu_style\";a:17:{s:22:\"simple_sub_panel_width\";i:1;s:43:\"simple_sub_panel_box_shadow_box_shadow_type\";i:1;s:38:\"simple_sub_panel_box_shadow_box_shadow\";i:1;s:30:\"simple_sub_panel_border_radius\";i:1;s:24:\"simple_sub_panel_padding\";i:1;s:23:\"simple_sub_panel_margin\";i:1;s:35:\"sub_menu_item_typography_typography\";i:1;s:36:\"sub_menu_item_typography_font_family\";i:1;s:34:\"sub_menu_item_typography_font_size\";i:1;s:36:\"sub_menu_item_typography_font_weight\";i:1;s:36:\"sub_menu_item_typography_line_height\";i:1;s:39:\"sub_menu_item_typography_letter_spacing\";i:1;s:19:\"sub_item_text_color\";i:1;s:16:\"sub_item_padding\";i:1;s:15:\"sub_item_margin\";i:1;s:25:\"sub_item_text_color_hover\";i:1;s:26:\"sub_item_text_color_active\";i:1;}s:32:\"section_mobile_menu_toggle_style\";a:1:{s:23:\"toggle_icon_size_mobile\";i:1;}s:35:\"section_mobile_menu_container_style\";a:1:{s:22:\"container_width_mobile\";i:1;}s:31:\"section_mobile_menu_items_style\";a:3:{s:16:\"item_label_color\";i:1;s:22:\"item_label_color_hover\";i:1;s:23:\"item_label_color_active\";i:1;}}}}s:10:\"jet-button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_content\";a:5:{s:27:\"selected_button_icon_normal\";i:1;s:19:\"button_label_normal\";i:2;s:26:\"selected_button_icon_hover\";i:1;s:18:\"button_label_hover\";i:2;s:10:\"button_url\";i:2;}}s:5:\"style\";a:4:{s:26:\"section_button_plane_style\";a:11:{s:14:\"button_padding\";i:1;s:34:\"normal_plane_background_background\";i:2;s:29:\"normal_plane_background_color\";i:2;s:33:\"plane_hover_background_background\";i:2;s:28:\"plane_hover_background_color\";i:2;s:26:\"normal_plane_border_radius\";i:1;s:39:\"normal_plane_box_shadow_box_shadow_type\";i:1;s:34:\"normal_plane_box_shadow_box_shadow\";i:1;s:25:\"plane_hover_border_radius\";i:1;s:38:\"hover_plane_box_shadow_box_shadow_type\";i:1;s:33:\"hover_plane_box_shadow_box_shadow\";i:1;}s:25:\"section_button_icon_style\";a:10:{s:17:\"normal_icon_color\";i:1;s:21:\"normal_icon_font_size\";i:1;s:21:\"normal_icon_box_width\";i:1;s:22:\"normal_icon_box_height\";i:1;s:18:\"normal_icon_margin\";i:1;s:16:\"hover_icon_color\";i:1;s:20:\"hover_icon_font_size\";i:1;s:20:\"hover_icon_box_width\";i:1;s:21:\"hover_icon_box_height\";i:1;s:17:\"hover_icon_margin\";i:1;}s:26:\"section_button_label_style\";a:14:{s:18:\"normal_label_color\";i:2;s:34:\"normal_label_typography_typography\";i:2;s:35:\"normal_label_typography_font_family\";i:2;s:33:\"normal_label_typography_font_size\";i:2;s:35:\"normal_label_typography_font_weight\";i:2;s:35:\"normal_label_typography_line_height\";i:2;s:38:\"normal_label_typography_letter_spacing\";i:2;s:17:\"hover_label_color\";i:2;s:33:\"hover_label_typography_typography\";i:2;s:34:\"hover_label_typography_font_family\";i:2;s:32:\"hover_label_typography_font_size\";i:2;s:34:\"hover_label_typography_font_weight\";i:2;s:34:\"hover_label_typography_line_height\";i:2;s:37:\"hover_label_typography_letter_spacing\";i:2;}s:28:\"section_button_general_style\";a:9:{s:23:\"button_alignment_mobile\";i:1;s:11:\"custom_size\";i:1;s:19:\"button_custom_width\";i:1;s:20:\"button_custom_height\";i:1;s:20:\"normal_border_radius\";i:1;s:28:\"normal_box_shadow_box_shadow\";i:1;s:19:\"hover_border_radius\";i:1;s:32:\"hover_box_shadow_box_shadow_type\";i:1;s:27:\"hover_box_shadow_box_shadow\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:2;}s:17:\"_section_position\";a:3:{s:14:\"_element_width\";i:2;s:21:\"_element_width_mobile\";i:1;s:28:\"_element_custom_width_mobile\";i:1;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:3:{s:14:\"section_layout\";a:2:{s:13:\"content_width\";i:1;s:3:\"gap\";i:1;}s:16:\"section_parallax\";a:1:{s:24:\"jet_parallax_layout_list\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:7:\"z_index\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}s:14:\"section_border\";a:1:{s:21:\"box_shadow_box_shadow\";i:1;}}}}}'),
(267,711,'_jet_template_content_type','elementor'),
(268,758,'_jet_template_content_type','elementor'),
(269,1636,'_elementor_template_type','jet_archive'),
(270,1636,'_elementor_page_settings','a:4:{s:14:\"jet_conditions\";a:0:{}s:14:\"conditions_top\";s:7:\"archive\";s:22:\"conditions_sub_archive\";s:17:\"archive-post-type\";s:34:\"conditions_archive-post-type_types\";a:1:{i:0;s:4:\"post\";}}'),
(271,1636,'_elementor_edit_mode','builder'),
(272,1636,'_elementor_version','3.1.4'),
(273,1636,'_wp_page_template','default'),
(274,1636,'_elementor_data','[{\"id\":\"50ee877\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"642ece6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"f900e59\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"97d84e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"caa9f94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"027\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a8d9dde\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d0282c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0b0d17c\"}],\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"104\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"023\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a4c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"984d7f7\",\"elType\":\"widget\",\"settings\":{\"featured_post\":\"\",\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"posts_columns\":\"3\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":25,\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"is_archive_template\":\"yes\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"20e33b2\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"a016183\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"101\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"},{\"id\":\"9a5f8bb\",\"elType\":\"widget\",\"settings\":{\"prev_text\":\"\",\"next_text\":\"\",\"items_bg_color\":\"#02010100\",\"items_color\":\"#2E2C39\",\"items_bg_color_hover\":\"#02010100\",\"items_color_hover\":\"#509BF6\",\"items_bg_color_active\":\"#02010100\",\"items_color_active\":\"#509BF6\",\"items_typography_typography\":\"custom\",\"items_typography_font_family\":\"Inter\",\"items_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"items_typography_font_weight\":\"400\",\"items_typography_line_height\":{\"unit\":\"em\",\"size\":2.3,\"sizes\":[]},\"items_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"items_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"012\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"04\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-posts-pagination\"}],\"isInner\":false}],\"isInner\":false}]'),
(275,1636,'_elementor_controls_usage','a:6:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";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:8:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;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:9:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;s:25:\"typography_letter_spacing\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:3;s:19:\"_inline_size_tablet\";i:2;s:21:\"space_between_widgets\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:3:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:2;s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;}s:16:\"section_parallax\";a:1:{s:24:\"jet_parallax_layout_list\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:2;s:6:\"margin\";i:1;}}}}s:22:\"jet-blog-smart-listing\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"section_general\";a:10:{s:13:\"featured_post\";i:1;s:13:\"posts_columns\";i:1;s:10:\"image_size\";i:1;s:14:\"image_position\";i:1;s:14:\"excerpt_length\";i:1;s:13:\"meta_position\";i:1;s:11:\"show_author\";i:1;s:25:\"selected_show_author_icon\";i:1;s:23:\"selected_show_date_icon\";i:1;s:20:\"posts_columns_mobile\";i:1;}s:13:\"section_query\";a:1:{s:19:\"is_archive_template\";i:1;}s:21:\"section_custom_fields\";a:2:{s:18:\"title_related_meta\";i:1;s:20:\"content_related_meta\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_post_style\";a:26:{s:11:\"post_margin\";i:1;s:19:\"post_content_margin\";i:1;s:16:\"post_title_color\";i:1;s:22:\"post_title_color_hover\";i:1;s:32:\"post_title_typography_typography\";i:1;s:33:\"post_title_typography_font_family\";i:1;s:31:\"post_title_typography_font_size\";i:1;s:33:\"post_title_typography_font_weight\";i:1;s:33:\"post_title_typography_line_height\";i:1;s:36:\"post_title_typography_letter_spacing\";i:1;s:17:\"post_title_margin\";i:1;s:15:\"post_text_color\";i:1;s:31:\"post_text_typography_typography\";i:1;s:32:\"post_text_typography_font_family\";i:1;s:30:\"post_text_typography_font_size\";i:1;s:32:\"post_text_typography_font_weight\";i:1;s:32:\"post_text_typography_line_height\";i:1;s:35:\"post_text_typography_letter_spacing\";i:1;s:16:\"post_text_margin\";i:1;s:18:\"post_margin_tablet\";i:1;s:26:\"post_content_margin_tablet\";i:1;s:38:\"post_title_typography_font_size_tablet\";i:1;s:38:\"post_title_typography_font_size_mobile\";i:1;s:24:\"post_title_margin_tablet\";i:1;s:37:\"post_text_typography_font_size_tablet\";i:1;s:23:\"post_text_margin_tablet\";i:1;}s:18:\"section_meta_style\";a:10:{s:10:\"meta_color\";i:1;s:15:\"meta_link_color\";i:1;s:21:\"meta_link_color_hover\";i:1;s:26:\"meta_typography_typography\";i:1;s:27:\"meta_typography_font_family\";i:1;s:25:\"meta_typography_font_size\";i:1;s:27:\"meta_typography_font_weight\";i:1;s:27:\"meta_typography_line_height\";i:1;s:30:\"meta_typography_letter_spacing\";i:1;s:11:\"meta_margin\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"jet-blog-posts-pagination\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_general\";a:2:{s:9:\"prev_text\";i:1;s:9:\"next_text\";i:1;}}s:5:\"style\";a:1:{s:11:\"items_style\";a:13:{s:14:\"items_bg_color\";i:1;s:11:\"items_color\";i:1;s:20:\"items_bg_color_hover\";i:1;s:17:\"items_color_hover\";i:1;s:21:\"items_bg_color_active\";i:1;s:18:\"items_color_active\";i:1;s:27:\"items_typography_typography\";i:1;s:28:\"items_typography_font_family\";i:1;s:26:\"items_typography_font_size\";i:1;s:28:\"items_typography_font_weight\";i:1;s:28:\"items_typography_line_height\";i:1;s:13:\"items_padding\";i:1;s:12:\"items_margin\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}}'),
(276,1636,'_wxr_import_user_slug','admin'),
(277,1653,'_elementor_template_type','jet_header'),
(278,1653,'_elementor_page_settings','a:2:{s:14:\"jet_conditions\";a:0:{}s:14:\"conditions_top\";s:6:\"entire\";}'),
(279,1653,'_elementor_edit_mode','builder'),
(280,1653,'_elementor_version','3.21.8'),
(281,1653,'_wp_page_template','default'),
(282,1653,'_elementor_data','[{\"id\":\"3dae27a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"1c03896\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"z_index\":4,\"background_color\":\"#000000\",\"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\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"042a60b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":19,\"align_tablet\":\"flex-start\",\"align_mobile\":\"space-between\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"eaf35fa\",\"elType\":\"widget\",\"settings\":{\"logo_image\":{\"url\":\"https:\\/\\/btpayments.io\\/wp-content\\/uploads\\/2021\\/03\\/logo-1.png\",\"id\":3055,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"auto\",\"logo_alignment_tablet\":\"flex-end\",\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"auto\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_logo_typography_typography\":\"custom\",\"text_logo_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_logo_typography_font_weight\":\"700\",\"text_logo_color\":\"#FFFFFF\",\"logo_type\":\"image\"},\"elements\":[],\"widgetType\":\"jet-logo\"}],\"isInner\":false},{\"id\":\"b1a5c6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":109.208,\"content_position\":\"center\",\"_inline_size_tablet\":55,\"align_tablet\":\"center\",\"align_mobile\":\"flex-end\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"c32e10b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"jet_parallax_layout_list\":[],\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":97.458},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"fd595b9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":69.823},\"_flex_size\":\"none\",\"jet_sticky_section_min_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_min_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_min_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_parallax_layout_list\":[],\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"e0869bb\",\"elType\":\"widget\",\"settings\":{\"nav_menu\":\"14\",\"nav_items_color\":\"#FFFFFF\",\"nav_items_typography_typography\":\"custom\",\"nav_items_typography_font_weight\":\"500\",\"nav_items_color_hover\":\"#509BF6\",\"nav_items_typography_hover_typography\":\"custom\",\"nav_items_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"nav_items_color_hover\":\"\"},\"nav_items_color_active\":\"#509BF6\"},\"elements\":[],\"widgetType\":\"jet-nav-menu\"}],\"isInner\":true},{\"id\":\"0923302\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"jet_sticky_section_min_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_min_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_min_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_parallax_layout_list\":[]},\"elements\":[{\"id\":\"79d9192\",\"elType\":\"widget\",\"settings\":{\"nav_menu\":\"13\",\"menu_alignment\":\"flex-end\",\"nav_items_color\":\"#FFFFFF\",\"nav_items_typography_typography\":\"custom\",\"nav_items_typography_font_weight\":\"500\",\"nav_items_color_hover\":\"#509BF6\"},\"elements\":[],\"widgetType\":\"jet-nav-menu\"}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}]'),
(286,2127,'_wp_attached_file','2021/04/blog3.jpeg'),
(287,2127,'_wp_attached_file','2021/04/blog3.jpeg'),
(288,2127,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1067;s:4:\"file\";s:18:\"2021/04/blog3.jpeg\";s:8:\"filesize\";i:142304;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"blog3-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13443;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"blog3-1024x683.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83545;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"blog3-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6494;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"blog3-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53721;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"blog3-1536x1024.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152851;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:18:\"blog3-370x265.jpeg\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19606;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:17:\"blog3-150x85.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4355;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:18:\"blog3-230x230.jpeg\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12127;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:18:\"blog3-400x400.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27546;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:18:\"blog3-370x500.jpeg\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29323;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:18:\"blog3-570x450.jpeg\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40049;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:19:\"blog3-1170x650.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87299;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:18:\"blog3-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37168;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:18:\"blog3-640x640.jpeg\";s:5:\"width\";i:640;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55418;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:19:\"blog3-1280x640.jpeg\";s:5:\"width\";i:1280;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90463;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(289,2127,'_wp_attachment_image_alt','blog3'),
(290,2127,'_wxr_import_user_slug','admin'),
(291,1653,'_jet_template_content_type','elementor'),
(292,1636,'_jet_template_content_type','elementor'),
(293,2128,'_wp_attached_file','2021/04/blog4.jpeg'),
(294,2128,'_wp_attached_file','2021/04/blog4.jpeg'),
(295,2128,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1067;s:4:\"file\";s:18:\"2021/04/blog4.jpeg\";s:8:\"filesize\";i:119738;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"blog4-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14059;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"blog4-1024x683.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85191;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"blog4-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6347;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"blog4-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56068;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"blog4-1536x1024.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152141;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:18:\"blog4-370x265.jpeg\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20572;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:17:\"blog4-150x85.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4447;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:18:\"blog4-230x230.jpeg\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11532;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:18:\"blog4-400x400.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25561;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:18:\"blog4-370x500.jpeg\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24327;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:18:\"blog4-570x450.jpeg\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40129;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:19:\"blog4-1170x650.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86882;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:18:\"blog4-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38634;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:18:\"blog4-640x640.jpeg\";s:5:\"width\";i:640;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50309;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:19:\"blog4-1280x640.jpeg\";s:5:\"width\";i:1280;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88430;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(296,2128,'_wp_attachment_image_alt','blog4'),
(297,2128,'_wxr_import_user_slug','admin'),
(298,2129,'_wp_attached_file','2021/04/blog5.jpeg'),
(299,2129,'_wp_attached_file','2021/04/blog5.jpeg'),
(300,2129,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1067;s:4:\"file\";s:18:\"2021/04/blog5.jpeg\";s:8:\"filesize\";i:123993;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"blog5-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14181;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"blog5-1024x683.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91229;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"blog5-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7004;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"blog5-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58871;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"blog5-1536x1024.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166825;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:18:\"blog5-370x265.jpeg\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21001;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:17:\"blog5-150x85.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4585;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:18:\"blog5-230x230.jpeg\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13375;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:18:\"blog5-400x400.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30547;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:18:\"blog5-370x500.jpeg\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32997;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:18:\"blog5-570x450.jpeg\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42780;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:19:\"blog5-1170x650.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100809;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:18:\"blog5-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40450;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:18:\"blog5-640x640.jpeg\";s:5:\"width\";i:640;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62351;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:19:\"blog5-1280x640.jpeg\";s:5:\"width\";i:1280;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108179;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(301,2129,'_wp_attachment_image_alt','blog5'),
(302,2129,'_wxr_import_user_slug','admin'),
(303,2130,'_wp_attached_file','2021/04/blog6.jpeg'),
(304,2130,'_wp_attached_file','2021/04/blog6.jpeg'),
(305,2130,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1067;s:4:\"file\";s:18:\"2021/04/blog6.jpeg\";s:8:\"filesize\";i:108732;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"blog6-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13556;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"blog6-1024x683.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81516;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"blog6-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6369;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"blog6-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53045;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"blog6-1536x1024.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146850;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:18:\"blog6-370x265.jpeg\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19661;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:17:\"blog6-150x85.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4559;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:18:\"blog6-230x230.jpeg\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11723;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:18:\"blog6-400x400.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26299;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:18:\"blog6-370x500.jpeg\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28495;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:18:\"blog6-570x450.jpeg\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38913;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:19:\"blog6-1170x650.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82047;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:18:\"blog6-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37047;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:18:\"blog6-640x640.jpeg\";s:5:\"width\";i:640;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52489;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:19:\"blog6-1280x640.jpeg\";s:5:\"width\";i:1280;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82715;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(306,2130,'_wp_attachment_image_alt','blog6'),
(307,2130,'_wxr_import_user_slug','admin'),
(308,2131,'_wp_attached_file','2021/04/blog7.jpeg'),
(309,2131,'_wp_attached_file','2021/04/blog7.jpeg'),
(310,2131,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1067;s:4:\"file\";s:18:\"2021/04/blog7.jpeg\";s:8:\"filesize\";i:137710;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"blog7-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10861;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"blog7-1024x683.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73196;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"blog7-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5353;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"blog7-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45205;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"blog7-1536x1024.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142497;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:18:\"blog7-370x265.jpeg\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15983;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:17:\"blog7-150x85.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3634;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:18:\"blog7-230x230.jpeg\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9897;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:18:\"blog7-400x400.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22876;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:18:\"blog7-370x500.jpeg\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27456;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:18:\"blog7-570x450.jpeg\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33562;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:19:\"blog7-1170x650.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75904;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:18:\"blog7-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30709;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:18:\"blog7-640x640.jpeg\";s:5:\"width\";i:640;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49349;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:19:\"blog7-1280x640.jpeg\";s:5:\"width\";i:1280;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79409;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(311,2131,'_wp_attachment_image_alt','blog7'),
(312,2131,'_wxr_import_user_slug','admin'),
(313,2132,'_wp_attached_file','2021/04/blog8.jpeg'),
(314,2132,'_wp_attached_file','2021/04/blog8.jpeg'),
(315,2132,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1067;s:4:\"file\";s:18:\"2021/04/blog8.jpeg\";s:8:\"filesize\";i:171008;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"blog8-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18661;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"blog8-1024x683.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123591;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"blog8-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8475;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"blog8-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79326;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"blog8-1536x1024.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:224881;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:18:\"blog8-370x265.jpeg\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27546;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:17:\"blog8-150x85.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6086;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:18:\"blog8-230x230.jpeg\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16180;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:18:\"blog8-400x400.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36803;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:18:\"blog8-370x500.jpeg\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37564;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:18:\"blog8-570x450.jpeg\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57314;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:19:\"blog8-1170x650.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139083;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:18:\"blog8-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54229;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:18:\"blog8-640x640.jpeg\";s:5:\"width\";i:640;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74900;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:19:\"blog8-1280x640.jpeg\";s:5:\"width\";i:1280;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147989;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(316,2132,'_wp_attachment_image_alt','blog8'),
(317,2132,'_wxr_import_user_slug','admin'),
(318,2133,'_wp_attached_file','2021/04/blog9.jpeg'),
(319,2133,'_wp_attached_file','2021/04/blog9.jpeg'),
(320,2133,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1067;s:4:\"file\";s:18:\"2021/04/blog9.jpeg\";s:8:\"filesize\";i:117221;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"blog9-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12488;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"blog9-1024x683.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77769;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"blog9-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6112;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"blog9-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49542;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"blog9-1536x1024.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146180;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:18:\"blog9-370x265.jpeg\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17977;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:17:\"blog9-150x85.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4145;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:18:\"blog9-230x230.jpeg\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11146;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:18:\"blog9-400x400.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24213;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:18:\"blog9-370x500.jpeg\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25803;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:18:\"blog9-570x450.jpeg\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36315;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:19:\"blog9-1170x650.jpeg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82605;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:18:\"blog9-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34151;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:18:\"blog9-640x640.jpeg\";s:5:\"width\";i:640;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48484;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:19:\"blog9-1280x640.jpeg\";s:5:\"width\";i:1280;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84829;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(321,2133,'_wp_attachment_image_alt','blog9'),
(322,2133,'_wxr_import_user_slug','admin'),
(323,2268,'_wp_attached_file','2021/04/logo.svg'),
(324,2268,'_wp_attached_file','2021/04/logo.svg'),
(325,2268,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:2774;s:5:\"width\";d:130;s:6:\"height\";d:40;}'),
(326,2268,'_wp_attachment_image_alt','logo'),
(328,2268,'_wxr_import_user_slug','admin'),
(329,2460,'_elementor_template_type','jet_header'),
(330,2460,'_elementor_page_settings','a:4:{s:14:\"jet_conditions\";a:0:{}s:14:\"conditions_top\";s:8:\"singular\";s:23:\"conditions_sub_singular\";s:18:\"singular-post-type\";s:35:\"conditions_singular-post-type_types\";a:1:{i:0;s:4:\"post\";}}'),
(331,2460,'_elementor_edit_mode','builder'),
(332,2460,'_elementor_version','3.1.4'),
(333,2460,'_wp_page_template','default'),
(334,2460,'_elementor_data','[{\"id\":\"a651690\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"1c03896\"}],\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"z_index\":4,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"48ad19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.5,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":19,\"align_tablet\":\"flex-start\",\"align_mobile\":\"space-between\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"50f4f77\",\"elType\":\"widget\",\"settings\":{\"logo_type\":\"image\",\"logo_image\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/04\\/logo.svg\",\"id\":2268},\"_element_width\":\"auto\",\"logo_alignment_tablet\":\"flex-end\",\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"auto\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-logo\"}],\"isInner\":false},{\"id\":\"2c4b7c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":46.016,\"content_position\":\"center\",\"_inline_size_tablet\":55,\"align_tablet\":\"center\",\"align_mobile\":\"flex-end\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1a8064c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"8\",\"_element_width\":\"auto\",\"menu_container_border_border\":\"solid\",\"menu_container_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"01\",\"isLinked\":false},\"menu_container_border_color\":\"#2E2C39\",\"menu_container_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"03\",\"isLinked\":false},\"top_item_typography_typography\":\"custom\",\"top_item_typography_font_family\":\"Inter\",\"top_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"top_item_typography_font_weight\":\"400\",\"top_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"top_item_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"top_item_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"016\",\"bottom\":\"7\",\"left\":\"016\",\"isLinked\":false},\"top_level_badge_order\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"top_level_arrow_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"top_level_arrow_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"05\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"018\",\"isLinked\":false},\"top_item_text_color_hover\":\"#ABABB0\",\"top_item_text_color_active\":\"#ABABB0\",\"simple_sub_panel_width\":{\"unit\":\"px\",\"size\":190,\"sizes\":[]},\"simple_sub_panel_box_shadow_box_shadow_type\":\"yes\",\"simple_sub_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.06)\"},\"simple_sub_panel_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"simple_sub_panel_padding\":{\"unit\":\"px\",\"top\":\"014\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"simple_sub_panel_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"sub_menu_item_typography_typography\":\"custom\",\"sub_menu_item_typography_font_family\":\"Inter\",\"sub_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_menu_item_typography_font_weight\":\"400\",\"sub_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"sub_menu_item_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_item_text_color\":\"#2E2C39\",\"sub_item_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"021\",\"isLinked\":false},\"sub_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_item_text_color_hover\":\"#509BF6\",\"sub_item_text_color_active\":\"#509BF6\",\"mobile_menu\":\"2\",\"container-position\":\"left\",\"menu_container_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"toggle_icon_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"container_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"auto\",\"item_label_color\":\"#2E2C39\",\"item_label_color_hover\":\"#509BF6\",\"item_label_color_active\":\"#509BF6\",\"top_item_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-mega-menu\"}],\"isInner\":false},{\"id\":\"f867b19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.148,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_tablet\":26,\"align_tablet\":\"flex-end\",\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_order_mobile\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"83b0b6c\",\"elType\":\"widget\",\"settings\":{\"selected_button_icon_normal\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"button_label_normal\":\"+1(505) 555-0125\",\"selected_button_icon_hover\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"button_label_hover\":\"+1(505) 555-0125\",\"button_url\":{\"url\":\"tel:+1(505)555-0125\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"normal_icon_color\":\"#509BF6\",\"normal_icon_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"normal_icon_box_width\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"normal_icon_box_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"normal_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_icon_color\":\"#509BF6\",\"hover_icon_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_icon_box_width\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_icon_box_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"normal_label_typography_font_weight\":\"500\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_weight\":\"500\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_alignment_mobile\":\"center\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"8f4aa9e\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#2E2C39\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false}]'),
(335,2460,'_elementor_controls_usage','a:5:{s:8:\"jet-logo\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:9:\"logo_type\";i:1;s:10:\"logo_image\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_width_tablet\";i:1;s:21:\"_element_width_mobile\";i:1;}s:14:\"_section_style\";a:1:{s:15:\"_padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:10:\"logo_style\";a:1:{s:21:\"logo_alignment_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:9:{s:12:\"_inline_size\";i:3;s:16:\"content_position\";i:3;s:19:\"_inline_size_tablet\";i:3;s:12:\"align_tablet\";i:3;s:12:\"align_mobile\";i:3;s:19:\"column_order_mobile\";i:3;s:19:\"_inline_size_mobile\";i:2;s:23:\"content_position_tablet\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:3;s:14:\"padding_mobile\";i:3;}}}}s:13:\"jet-mega-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"section_general\";a:2:{s:4:\"menu\";i:1;s:11:\"mobile_menu\";i:1;}s:21:\"section_mobile_layout\";a:1:{s:18:\"container-position\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_width_tablet\";i:1;s:21:\"_element_width_mobile\";i:1;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:8:{s:28:\"section_menu_container_style\";a:5:{s:28:\"menu_container_border_border\";i:1;s:27:\"menu_container_border_width\";i:1;s:27:\"menu_container_border_color\";i:1;s:22:\"menu_container_padding\";i:1;s:34:\"menu_container_border_width_tablet\";i:1;}s:23:\"section_main_menu_style\";a:10:{s:30:\"top_item_typography_typography\";i:1;s:31:\"top_item_typography_font_family\";i:1;s:29:\"top_item_typography_font_size\";i:1;s:31:\"top_item_typography_font_weight\";i:1;s:31:\"top_item_typography_line_height\";i:1;s:34:\"top_item_typography_letter_spacing\";i:1;s:16:\"top_item_padding\";i:1;s:25:\"top_item_text_color_hover\";i:1;s:26:\"top_item_text_color_active\";i:1;s:23:\"top_item_padding_tablet\";i:1;}s:19:\"section_badge_style\";a:1:{s:21:\"top_level_badge_order\";i:1;}s:19:\"section_arrow_style\";a:2:{s:20:\"top_level_arrow_size\";i:1;s:22:\"top_level_arrow_margin\";i:1;}s:22:\"section_sub_menu_style\";a:17:{s:22:\"simple_sub_panel_width\";i:1;s:43:\"simple_sub_panel_box_shadow_box_shadow_type\";i:1;s:38:\"simple_sub_panel_box_shadow_box_shadow\";i:1;s:30:\"simple_sub_panel_border_radius\";i:1;s:24:\"simple_sub_panel_padding\";i:1;s:23:\"simple_sub_panel_margin\";i:1;s:35:\"sub_menu_item_typography_typography\";i:1;s:36:\"sub_menu_item_typography_font_family\";i:1;s:34:\"sub_menu_item_typography_font_size\";i:1;s:36:\"sub_menu_item_typography_font_weight\";i:1;s:36:\"sub_menu_item_typography_line_height\";i:1;s:39:\"sub_menu_item_typography_letter_spacing\";i:1;s:19:\"sub_item_text_color\";i:1;s:16:\"sub_item_padding\";i:1;s:15:\"sub_item_margin\";i:1;s:25:\"sub_item_text_color_hover\";i:1;s:26:\"sub_item_text_color_active\";i:1;}s:32:\"section_mobile_menu_toggle_style\";a:1:{s:23:\"toggle_icon_size_mobile\";i:1;}s:35:\"section_mobile_menu_container_style\";a:1:{s:22:\"container_width_mobile\";i:1;}s:31:\"section_mobile_menu_items_style\";a:3:{s:16:\"item_label_color\";i:1;s:22:\"item_label_color_hover\";i:1;s:23:\"item_label_color_active\";i:1;}}}}s:10:\"jet-button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_content\";a:5:{s:27:\"selected_button_icon_normal\";i:1;s:19:\"button_label_normal\";i:2;s:26:\"selected_button_icon_hover\";i:1;s:18:\"button_label_hover\";i:2;s:10:\"button_url\";i:2;}}s:5:\"style\";a:4:{s:26:\"section_button_plane_style\";a:11:{s:14:\"button_padding\";i:1;s:34:\"normal_plane_background_background\";i:2;s:29:\"normal_plane_background_color\";i:2;s:33:\"plane_hover_background_background\";i:2;s:28:\"plane_hover_background_color\";i:2;s:26:\"normal_plane_border_radius\";i:1;s:39:\"normal_plane_box_shadow_box_shadow_type\";i:1;s:34:\"normal_plane_box_shadow_box_shadow\";i:1;s:25:\"plane_hover_border_radius\";i:1;s:38:\"hover_plane_box_shadow_box_shadow_type\";i:1;s:33:\"hover_plane_box_shadow_box_shadow\";i:1;}s:25:\"section_button_icon_style\";a:10:{s:17:\"normal_icon_color\";i:1;s:21:\"normal_icon_font_size\";i:1;s:21:\"normal_icon_box_width\";i:1;s:22:\"normal_icon_box_height\";i:1;s:18:\"normal_icon_margin\";i:1;s:16:\"hover_icon_color\";i:1;s:20:\"hover_icon_font_size\";i:1;s:20:\"hover_icon_box_width\";i:1;s:21:\"hover_icon_box_height\";i:1;s:17:\"hover_icon_margin\";i:1;}s:26:\"section_button_label_style\";a:14:{s:18:\"normal_label_color\";i:2;s:34:\"normal_label_typography_typography\";i:2;s:35:\"normal_label_typography_font_family\";i:2;s:33:\"normal_label_typography_font_size\";i:2;s:35:\"normal_label_typography_font_weight\";i:2;s:35:\"normal_label_typography_line_height\";i:2;s:38:\"normal_label_typography_letter_spacing\";i:2;s:17:\"hover_label_color\";i:2;s:33:\"hover_label_typography_typography\";i:2;s:34:\"hover_label_typography_font_family\";i:2;s:32:\"hover_label_typography_font_size\";i:2;s:34:\"hover_label_typography_font_weight\";i:2;s:34:\"hover_label_typography_line_height\";i:2;s:37:\"hover_label_typography_letter_spacing\";i:2;}s:28:\"section_button_general_style\";a:9:{s:23:\"button_alignment_mobile\";i:1;s:11:\"custom_size\";i:1;s:19:\"button_custom_width\";i:1;s:20:\"button_custom_height\";i:1;s:20:\"normal_border_radius\";i:1;s:28:\"normal_box_shadow_box_shadow\";i:1;s:19:\"hover_border_radius\";i:1;s:32:\"hover_box_shadow_box_shadow_type\";i:1;s:27:\"hover_box_shadow_box_shadow\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:2;}s:17:\"_section_position\";a:3:{s:14:\"_element_width\";i:2;s:21:\"_element_width_mobile\";i:1;s:28:\"_element_custom_width_mobile\";i:1;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:3:{s:14:\"section_layout\";a:2:{s:13:\"content_width\";i:1;s:3:\"gap\";i:1;}s:16:\"section_parallax\";a:1:{s:24:\"jet_parallax_layout_list\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:7:\"z_index\";i:1;s:6:\"margin\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}}'),
(338,2465,'_elementor_template_type','jet_footer'),
(339,2465,'_elementor_page_settings','a:4:{s:14:\"jet_conditions\";a:0:{}s:14:\"conditions_top\";s:8:\"singular\";s:23:\"conditions_sub_singular\";s:18:\"singular-post-type\";s:35:\"conditions_singular-post-type_types\";a:1:{i:0;s:4:\"post\";}}'),
(340,2465,'_elementor_edit_mode','builder'),
(341,2465,'_elementor_version','3.1.4'),
(342,2465,'_wp_page_template','default'),
(343,2465,'_elementor_data','[{\"id\":\"c13c8a3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"39b0103\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#2E2C39\",\"padding\":{\"unit\":\"px\",\"top\":\"152\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"78\",\"right\":\"0\",\"bottom\":\"045\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"085\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"94077c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":40,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"36\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"b81457d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date with upcoming workshops and new products\",\"title_color\":\"#E5E5E5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"49bc96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a7153ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Email Address<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f9a2d22\",\"elType\":\"widget\",\"settings\":{\"submit_placeholder\":\"email@example.com\",\"submit_button_text\":\"\",\"additional_fields\":[{\"placeholder\":\"First Name\",\"_id\":\"718e863\"},{\"type\":\"lname\",\"placeholder\":\"Last Name\",\"_id\":\"d4ef0ec\"},{\"type\":\"address\",\"placeholder\":\"Address\",\"_id\":\"1b44cf7\"},{\"type\":\"phone\",\"placeholder\":\"Phone Number\",\"_id\":\"f2d97a7\"}],\"redirect_url\":\"#\",\"container_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"container_border_border\":\"solid\",\"container_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"container_border_color\":\"#E5E5E5\",\"input_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"013\",\"bottom\":\"013\",\"left\":\"0\",\"isLinked\":false},\"input_bg_color\":\"#02010100\",\"input_color\":\"#FFFFFF\",\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Inter\",\"input_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"input_typography_font_weight\":\"300\",\"input_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"input_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"input_border_border\":\"solid\",\"input_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"input_focus_box_shadow_box_shadow_type\":\"yes\",\"input_focus_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"button_bg_color\":\"#6EC1E400\",\"button_hover_bg_color\":\"#02010100\",\"message_alignment\":\"flex-start\",\"message_error_typography_typography\":\"custom\",\"message_error_typography_font_family\":\"Roboto\",\"message_error_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"message_error_typography_font_weight\":\"300\",\"message_error_margin\":{\"unit\":\"px\",\"top\":\"-36\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"input_focus_bg_color\":\"#02010100\",\"message_success_typography_typography\":\"custom\",\"message_success_typography_font_family\":\"Roboto\",\"message_success_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"message_success_typography_font_weight\":\"500\",\"input_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"08\",\"bottom\":\"013\",\"left\":\"0\",\"isLinked\":false},\"input_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jet-subscribe-form\"},{\"id\":\"7406ea5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>By signing and clicking Submit, you affirm you have read and agree to the Privacy Policy and Terms of Use and want to receive news.<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68d2eb4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3669a50\"}],\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#2E2C39\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ea63e07\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bb3e59\",\"elType\":\"widget\",\"settings\":{\"title\":\"About\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b61f882\",\"elType\":\"widget\",\"settings\":{\"menu\":\"6\",\"main_items_bg_color\":\"#7A7A7A00\",\"main_items_color\":\"#ABABB0\",\"main_items_typography_typography\":\"custom\",\"main_items_typography_font_family\":\"Inter\",\"main_items_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"main_items_typography_font_weight\":\"400\",\"main_items_typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"main_items_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"main_items_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"main_items_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"main_items_hover_color\":\"#FFFFFF\",\"main_items_hover_typography_typography\":\"custom\",\"main_items_hover_typography_text_decoration\":\"underline\",\"main_items_active_color\":\"#FFFFFF\",\"main_items_active_typography_typography\":\"custom\",\"main_items_active_typography_text_decoration\":\"underline\",\"main_items_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"main_items_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jet-custom-menu\"}],\"isInner\":false},{\"id\":\"6160013\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0ffdc1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9bcccfe\",\"elType\":\"widget\",\"settings\":{\"menu\":\"9\",\"main_items_bg_color\":\"#7A7A7A00\",\"main_items_color\":\"#ABABB0\",\"main_items_typography_typography\":\"custom\",\"main_items_typography_font_family\":\"Inter\",\"main_items_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"main_items_typography_font_weight\":\"400\",\"main_items_typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"main_items_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"main_items_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"main_items_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"main_items_hover_color\":\"#FFFFFF\",\"main_items_hover_typography_typography\":\"custom\",\"main_items_hover_typography_text_decoration\":\"underline\",\"main_items_active_color\":\"#FFFFFF\",\"main_items_active_typography_typography\":\"custom\",\"main_items_active_typography_text_decoration\":\"underline\",\"main_items_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"main_items_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jet-custom-menu\"}],\"isInner\":false},{\"id\":\"714e1fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"c325da5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f67a47\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>New York\\u00a0<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-27\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8e02218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>4140 Parker Rd. Allentown, New Mexico 31134<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":240,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1511be\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"9b76115\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f4da5ca\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"46eef77\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"613afb7\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"911fee7\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"hover_secondary_color\":\"#509BF6\",\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"8e6c3de\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"color_link\":\"#FFFFFF\",\"color_link_hover\":\"#509BF6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"d0f0575\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contacts\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e36082\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin:0 0 9px 0\\\">General:<\\/p>\\n<a href=\\\"tel:+1(505)555-0125\\\">+1(505) 555-0125<\\/a>\\n<a href=\\\"mailto:namecompany@example.com\\\">namecompany@example.com<\\/a>\",\"text_color\":\"#909399\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"519c919\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin:0 0 9px 0\\\">New business:<\\/p>\\n<a href=\\\"tel:+1(808)555-0111\\\">+1(808) 555-0111<\\/a>\\n<a href=\\\"mailto:namecompany@example.com\\\">namecompany@example.com<\\/a>\",\"text_color\":\"#909399\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":290,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f2d2742\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"c5a2f70\"}],\"background_background\":\"classic\",\"background_color\":\"#2E2C39\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"0126\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"045\",\"right\":\"0\",\"bottom\":\"087\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"95caeb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"color_link\":\"#ABABB0\",\"color_link_hover\":\"#509BF6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"9bd041f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"#\\\">ZEMEZ<\\/a>\\u00a0\\u00a9. All Rights Reserved.\\u00a0<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),
(344,2465,'_elementor_controls_usage','a:7:{s:7:\"heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:11:\"title_color\";i:5;s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:22:\"typography_line_height\";i:5;s:25:\"typography_letter_spacing\";i:5;s:27:\"typography_font_size_tablet\";i:5;s:27:\"typography_font_size_mobile\";i:4;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}s:14:\"_section_style\";a:3:{s:14:\"_margin_tablet\";i:5;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:7;s:19:\"_inline_size_tablet\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:7;s:14:\"padding_tablet\";i:7;s:14:\"padding_mobile\";i:3;}}s:5:\"style\";a:1:{s:12:\"section_typo\";a:2:{s:10:\"color_link\";i:2;s:16:\"color_link_hover\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:10:\"text_color\";i:7;s:21:\"typography_typography\";i:7;s:22:\"typography_font_family\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_font_weight\";i:7;s:22:\"typography_line_height\";i:7;s:25:\"typography_letter_spacing\";i:7;s:27:\"typography_font_size_tablet\";i:4;s:27:\"typography_font_size_mobile\";i:4;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:2;}s:17:\"_section_position\";a:4:{s:14:\"_element_width\";i:3;s:21:\"_element_custom_width\";i:2;s:21:\"_element_width_mobile\";i:2;s:28:\"_element_custom_width_mobile\";i:2;}}}}s:18:\"jet-subscribe-form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:24:\"section_subscribe_fields\";a:3:{s:18:\"submit_placeholder\";i:1;s:18:\"submit_button_text\";i:1;s:17:\"additional_fields\";i:1;}}s:5:\"style\";a:4:{s:21:\"section_general_style\";a:4:{s:15:\"container_width\";i:1;s:23:\"container_border_border\";i:1;s:22:\"container_border_width\";i:1;s:22:\"container_border_color\";i:1;}s:19:\"section_input_style\";a:16:{s:13:\"input_padding\";i:1;s:14:\"input_bg_color\";i:1;s:11:\"input_color\";i:1;s:27:\"input_typography_typography\";i:1;s:28:\"input_typography_font_family\";i:1;s:26:\"input_typography_font_size\";i:1;s:28:\"input_typography_font_weight\";i:1;s:28:\"input_typography_line_height\";i:1;s:31:\"input_typography_letter_spacing\";i:1;s:19:\"input_border_border\";i:1;s:18:\"input_border_width\";i:1;s:38:\"input_focus_box_shadow_box_shadow_type\";i:1;s:33:\"input_focus_box_shadow_box_shadow\";i:1;s:20:\"input_focus_bg_color\";i:1;s:20:\"input_padding_mobile\";i:1;s:33:\"input_typography_font_size_mobile\";i:1;}s:27:\"section_submit_button_style\";a:3:{s:15:\"button_bg_color\";i:1;s:21:\"button_hover_bg_color\";i:1;s:14:\"button_padding\";i:1;}s:21:\"section_message_style\";a:10:{s:17:\"message_alignment\";i:1;s:35:\"message_error_typography_typography\";i:1;s:36:\"message_error_typography_font_family\";i:1;s:34:\"message_error_typography_font_size\";i:1;s:36:\"message_error_typography_font_weight\";i:1;s:20:\"message_error_margin\";i:1;s:37:\"message_success_typography_typography\";i:1;s:38:\"message_success_typography_font_family\";i:1;s:36:\"message_success_typography_font_size\";i:1;s:38:\"message_success_typography_font_weight\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:3:{s:14:\"section_layout\";a:2:{s:13:\"content_width\";i:3;s:3:\"gap\";i:3;}s:16:\"section_parallax\";a:1:{s:24:\"jet_parallax_layout_list\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:2;s:6:\"margin\";i:3;}}}}s:15:\"jet-custom-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"menu\";i:2;}}s:5:\"style\";a:1:{s:24:\"section_main_items_style\";a:18:{s:19:\"main_items_bg_color\";i:2;s:16:\"main_items_color\";i:2;s:32:\"main_items_typography_typography\";i:2;s:33:\"main_items_typography_font_family\";i:2;s:31:\"main_items_typography_font_size\";i:2;s:33:\"main_items_typography_font_weight\";i:2;s:33:\"main_items_typography_line_height\";i:2;s:36:\"main_items_typography_letter_spacing\";i:2;s:18:\"main_items_padding\";i:2;s:17:\"main_items_margin\";i:2;s:22:\"main_items_hover_color\";i:2;s:38:\"main_items_hover_typography_typography\";i:2;s:43:\"main_items_hover_typography_text_decoration\";i:2;s:23:\"main_items_active_color\";i:2;s:39:\"main_items_active_typography_typography\";i:2;s:44:\"main_items_active_typography_text_decoration\";i:2;s:38:\"main_items_typography_font_size_tablet\";i:2;s:38:\"main_items_typography_font_size_mobile\";i:2;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{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:2:{s:20:\"section_social_style\";a:7:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:19:\"icon_spacing_tablet\";i:1;}s:20:\"section_social_hover\";a:1:{s:21:\"hover_secondary_color\";i:1;}}}}}'),
(345,2465,'_wxr_import_user_slug','admin'),
(346,2465,'_jet_template_content_type','elementor'),
(347,2460,'_jet_template_content_type','elementor'),
(348,2492,'_wp_attached_file','2021/03/cropped-fav-1-1.png'),
(349,2492,'_wp_attached_file','2021/03/cropped-fav-1-1.png'),
(350,2492,'_wp_attachment_context','site-icon'),
(351,2492,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:27:\"2021/03/cropped-fav-1-1.png\";s:8:\"filesize\";i:12231;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"cropped-fav-1-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11813;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"cropped-fav-1-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:5401;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:27:\"cropped-fav-1-1-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11088;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:26:\"cropped-fav-1-1-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3096;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:27:\"cropped-fav-1-1-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8644;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:27:\"cropped-fav-1-1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16370;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:27:\"cropped-fav-1-1-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15374;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:27:\"cropped-fav-1-1-512x450.png\";s:5:\"width\";i:512;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13212;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(352,2492,'_wp_attachment_image_alt','cropped-fav-1-1.png'),
(353,2492,'_wxr_import_user_slug','admin'),
(354,50,'_wp_page_template','elementor_header_footer'),
(355,50,'_elementor_edit_mode','builder'),
(356,50,'_elementor_template_type','wp-page'),
(357,50,'_elementor_version','3.21.8'),
(358,50,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW!\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"USD Settlement\",\"description_text\":\"Supports crypto currency or USD settlement\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"link\":{\"url\":\"http:\\/\\/portal.btpayments.io\\/auth\\/sign-in\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/btpayments.io\\/wp-content\\/uploads\\/2024\\/10\\/8607110911323-1.jpg\",\"id\":3086,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_bg_width\":{\"unit\":\"%\",\"size\":130,\"sizes\":[]}},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/btpayments.io\\/wp-content\\/uploads\\/2024\\/10\\/banner-1.png\",\"id\":3093,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"20\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\",\"selected_icon\":{\"value\":\"fas fa-coins\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"fb10810\",\"elType\":\"widget\",\"settings\":{\"title\":\"USD Settlement\",\"header_size\":\"h3\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Any crypto currency payment can be settled in USD, and merchants can choose to settle in crypto currency or USD<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"20\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e782755\",\"elType\":\"widget\",\"settings\":{\"title\":\"Simple to use\",\"header_size\":\"h3\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"20\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f4883c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"No fee for new account\",\"header_size\":\"h3\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"20\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e16cbc5\",\"elType\":\"widget\",\"settings\":{\"title\":\"No limitations for industry\",\"header_size\":\"h3\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b9238d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"background_color_b\":\"\",\"background_gradient_type\":\"radial\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"1fd3270\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_parallax_layout_list\":[]},\"elements\":[{\"id\":\"1460ad6\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Crypto Payments Work?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4e64ed8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"jet_parallax_layout_list\":[]},\"elements\":[{\"id\":\"67151f8\",\"elType\":\"widget\",\"settings\":{\"cards_list\":[{\"item_title\":\"Your customer chooses to pay with crypto\",\"_id\":\"c88bf97\",\"selected_item_point_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"item_point_text\":\"1.\"},{\"item_title\":\"Customer selects a currency to pay with\",\"_id\":\"dc7f84c\",\"selected_item_point_icon\":{\"value\":\"fab fa-bitcoin\",\"library\":\"fa-brands\"},\"item_point_text\":\"2.\"},{\"item_title\":\"Customer sends crypto to the deposit address\",\"_id\":\"a7493f6\",\"selected_item_point_icon\":{\"value\":\"fas fa-dollar-sign\",\"library\":\"fa-solid\"},\"item_point_text\":\"3.\"},{\"item_title\":\"You receive the currency of your choice\",\"_id\":\"02f336f\",\"selected_item_point_icon\":{\"value\":\"fas fa-wallet\",\"library\":\"fa-solid\"},\"item_point_text\":\"4.\"}],\"horizontal_alignment\":\"left\",\"horizontal_space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"vertical_space\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"card_content_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"8\",\"left\":\"20\",\"isLinked\":false},\"card_title_typography_typography\":\"custom\",\"card_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"point_active_background_color\":\"#509BF6\",\"progress_background_color\":\"#509BF6\",\"line_width\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"card_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"card_desc_typography_typography\":\"custom\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-timeline\"}],\"isInner\":true},{\"id\":\"9e67859\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"jet_parallax_layout_list\":[],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"f77c701\",\"elType\":\"widget\",\"settings\":{\"title\":\"We support more than 170 wallets\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"header_size\":\"h3\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b261ef5\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2637,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/wallet-1.png\"},{\"id\":2638,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/wallet-2.png\"},{\"id\":2639,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/wallet-3.png\"},{\"id\":2640,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/wallet-4.png\"},{\"id\":2641,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/wallet-5.png\"},{\"id\":2642,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/wallet-6.png\"},{\"id\":2643,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/wallet-7.png\"},{\"id\":2644,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/wallet-8.png\"},{\"id\":2645,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/wallet-9.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"none\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"autoplay_speed\":3000},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"a559f6d\",\"elType\":\"widget\",\"settings\":{\"title\":\"We support more than 54 currencies\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"header_size\":\"h3\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f0b3d58\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2646,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-1.png\"},{\"id\":2647,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-2.png\"},{\"id\":2648,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-3.png\"},{\"id\":2649,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-4.png\"},{\"id\":2650,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-5.png\"},{\"id\":2651,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-6.png\"},{\"id\":2652,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-7.png\"},{\"id\":2653,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-8.png\"},{\"id\":2654,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-9.png\"},{\"id\":2655,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-10.png\"},{\"id\":2656,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-11.png\"},{\"id\":2657,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-12.png\"},{\"id\":2658,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-13.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"5\",\"navigation\":\"none\",\"direction\":\"rtl\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"4\",\"autoplay_speed\":3000},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"060\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_flex_size\":\"none\",\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\",\"slides_to_show_mobile\":\"2\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\",\"slides_to_show_mobile\":\"2\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74078f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"jet_parallax_layout_list\":[],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2641e3f\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQs\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4567bc7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Can BTPayments use crypto currency or US dollars for settlement?\",\"tab_content\":\"<p>Yes, BTPayments supports you to choose crypto currency or US dollars for settlement.<\\/p>\",\"_id\":\"293b366\"},{\"tab_title\":\"Is BTPayments safe?\",\"tab_content\":\"<p>BTPayments is a secure cryptocurrency payment platform, bridging traditional finance and the evolving Web3 world.<\\/p>\",\"_id\":\"4980304\"},{\"tab_title\":\"How BTPayments charges?\",\"tab_content\":\"<p>BTPayments charges only a 1% transaction fee on merchant sales and no monthly or annual fees.<\\/p><p>For example, for a 100 USDT transaction, BTPayments will deduct a handling fee of 1USDT and credit 99 USDT to the payee\'s account.<\\/p>\",\"_id\":\"c2ac973\"},{\"tab_title\":\"For withdrawals, are there any limits or fees?\",\"tab_content\":\"<p>BTPayments does not set withdrawal limits.<\\/p><p>For cryptocurrency withdrawals, BTPayments charges a gas fee of 2.5 units per transaction, with no amount limit.<\\/p><p>For fiat withdrawals, BTPayments charges a fee of 0.5%, regardless of the amount, as well as a fixed transfer fee of 25 USD.<\\/p>\",\"_id\":\"65fab98\"},{\"tab_title\":\"What is settlement period and expected fund arrival time?\",\"tab_content\":\"<p>BTPayments operates on a T+1 settlement cycle.<\\/p><p>Withdrawals initiated before 5 AM (UTC) on a business day are settled the same day; those after 5 AM (UTC) are settled the next day.<\\/p><p>Withdrawals on non-business days are processed on the next business day.<\\/p>\",\"_id\":\"450f3f4\"},{\"tab_title\":\"How to Integrate BTPayments?\",\"tab_content\":\"<p>Integrating BTPayments is quick and easy, supporting various e-commerce platforms including Shopify, WooCommerce, Magento, and more, along with an API.<\\/p>\",\"_id\":\"b98db2e\"},{\"tab_title\":\"Is KYC needed for withdrawals?\",\"tab_content\":\"<p>Withdrawing cryptocurrency doesn\'t require KYC. Current options include USDT, BTC, ETH, and KAS.<\\/p><p>For fiat withdrawals, KYC is necessary. Please register and submit the required information in the merchant dashboard.<\\/p>\",\"_id\":\"65322b1\"},{\"tab_title\":\"What tokens does BTPayments Support?\",\"tab_content\":\"<p>BTPayments supports a wide range of mainstream cryptocurrencies, catering to diverse payment preferences. We\'ve integrated over 60 cryptocurrencies.<br \\/>We continuously expand our supported public chains and cryptocurrencies in line with market trends and user demands.<br \\/>Token issuers interested in incorporating their cryptocurrencies into our system are encouraged to contact us.<\\/p>\",\"_id\":\"b359c2c\"}],\"border_color\":\"#F3F3F3\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}]'),
(378,56,'_wxr_import_user_slug','admin'),
(379,58,'_wp_page_template','elementor_header_footer'),
(380,58,'_elementor_edit_mode','builder'),
(381,58,'_elementor_template_type','wp-page'),
(382,58,'_elementor_version','3.21.8'),
(383,58,'_elementor_data','[{\"id\":\"eb189c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"min_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-start\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/regist-bg.png\",\"id\":2850,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"flex_direction_mobile\":\"column-reverse\"},\"elements\":[{\"id\":\"4f36089\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_parallax_layout_list\":[]},\"elements\":[{\"id\":\"b802d6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We would be delighted to start a conversation\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a87c87f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"title_text\":\"USD Settlement\",\"description_text\":\"Any crypto currency payment can be settled in USD, and merchants can choose to settle in crypto currency or USD\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"primary_color\":\"#509BF6\",\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"0fcbe32\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"title_text\":\"Easy Onboarding\",\"description_text\":\"Sign up today and use our pre-built solutions or integrate with our developer friendly APIs\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"primary_color\":\"#509BF6\",\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d8acdf8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-circle\",\"library\":\"fa-solid\"},\"title_text\":\"Streamline Operations\",\"description_text\":\"Take advantage of our Cloud based gateway, state of the art verification and security, as well as our robust online portal\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"primary_color\":\"#509BF6\",\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"127d096\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d572936\",\"elType\":\"widget\",\"settings\":{\"form_shortcode\":\"1507::contact-form\"},\"elements\":[],\"widgetType\":\"contact-form-7\"}],\"isInner\":true}],\"isInner\":false}]'),
(385,58,'_wxr_import_user_slug','admin'),
(424,328,'_menu_item_type','custom'),
(425,328,'_menu_item_object_id','328'),
(426,328,'_menu_item_object','custom'),
(427,328,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(428,328,'_menu_item_url','http://btpayments.kinsta.cloud/what-we-do/'),
(429,328,'_wxr_import_user_slug','admin'),
(430,329,'_menu_item_type','post_type'),
(431,329,'_menu_item_object_id','50'),
(432,329,'_menu_item_object','page'),
(433,329,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(434,329,'_wxr_import_user_slug','admin'),
(435,330,'_menu_item_type','post_type'),
(436,330,'_menu_item_object_id','56'),
(437,330,'_menu_item_object','page'),
(438,330,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(439,330,'_wxr_import_user_slug','admin'),
(440,331,'_menu_item_type','post_type'),
(441,331,'_menu_item_object_id','58'),
(442,331,'_menu_item_object','page'),
(443,331,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(444,331,'_wxr_import_user_slug','admin'),
(472,5,'_form','<label> Your name\n [text* your-name] </label>\n\n<label> Your email\n [email* your-email] </label>\n\n<label> Subject\n [text* your-subject] </label>\n\n<label> Your message (optional)\n [textarea your-message] </label>\n\n[submit \"Submit\"]'),
(473,5,'_mail','a:8:{s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:46:\"[_site_title] <anastasiia.lukashyna@gmail.com>\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),
(474,5,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:46:\"[_site_title] <anastasiia.lukashyna@gmail.com>\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),
(475,5,'_messages','a:12:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";}'),
(476,5,'_locale','en_US'),
(477,5,'_wxr_import_user_slug','admin'),
(496,677,'_wp_page_template','default'),
(497,677,'_thumbnail_id','2125'),
(498,677,'kava_extra_link_target','_blank'),
(499,677,'kava_extra_audio_loop','false'),
(500,677,'kava_extra_audio_autoplay','false'),
(501,677,'kava_extra_audio_preload','false'),
(502,677,'kava_extra_video_type','library'),
(503,677,'kava_extra_video_width','770'),
(504,677,'kava_extra_video_height','480'),
(505,677,'kava_extra_video_loop','false'),
(506,677,'kava_extra_video_autoplay','false'),
(507,677,'kava_extra_video_preload','false'),
(508,677,'kava_extra_enable_breadcrumbs','inherit'),
(513,678,'_wp_page_template','default'),
(514,678,'_thumbnail_id','2126'),
(515,678,'kava_extra_link_target','_blank'),
(516,678,'kava_extra_audio_loop','false'),
(517,678,'kava_extra_audio_autoplay','false'),
(518,678,'kava_extra_audio_preload','false'),
(519,678,'kava_extra_video_type','library'),
(520,678,'kava_extra_video_width','770'),
(521,678,'kava_extra_video_height','480'),
(522,678,'kava_extra_video_loop','false'),
(523,678,'kava_extra_video_autoplay','false'),
(524,678,'kava_extra_video_preload','false'),
(525,678,'kava_extra_enable_breadcrumbs','inherit'),
(530,679,'_wp_page_template','default'),
(531,679,'_thumbnail_id','2127'),
(532,679,'kava_extra_link_target','_blank'),
(533,679,'kava_extra_audio_loop','false'),
(534,679,'kava_extra_audio_autoplay','false'),
(535,679,'kava_extra_audio_preload','false'),
(536,679,'kava_extra_video_type','library'),
(537,679,'kava_extra_video_width','770'),
(538,679,'kava_extra_video_height','480'),
(539,679,'kava_extra_video_loop','false'),
(540,679,'kava_extra_video_autoplay','false'),
(541,679,'kava_extra_video_preload','false'),
(542,679,'kava_extra_enable_breadcrumbs','inherit'),
(547,680,'_wp_page_template','default'),
(548,680,'_thumbnail_id','2128'),
(549,680,'kava_extra_link_target','_blank'),
(550,680,'kava_extra_audio_loop','false'),
(551,680,'kava_extra_audio_autoplay','false'),
(552,680,'kava_extra_audio_preload','false'),
(553,680,'kava_extra_video_type','library'),
(554,680,'kava_extra_video_width','770'),
(555,680,'kava_extra_video_height','480'),
(556,680,'kava_extra_video_loop','false'),
(557,680,'kava_extra_video_autoplay','false'),
(558,680,'kava_extra_video_preload','false'),
(559,680,'kava_extra_enable_breadcrumbs','inherit'),
(564,681,'_wp_page_template','default'),
(565,681,'_thumbnail_id','2129'),
(566,681,'kava_extra_link_target','_blank'),
(567,681,'kava_extra_audio_loop','false'),
(568,681,'kava_extra_audio_autoplay','false'),
(569,681,'kava_extra_audio_preload','false'),
(570,681,'kava_extra_video_type','library'),
(571,681,'kava_extra_video_width','770'),
(572,681,'kava_extra_video_height','480'),
(573,681,'kava_extra_video_loop','false'),
(574,681,'kava_extra_video_autoplay','false'),
(575,681,'kava_extra_video_preload','false'),
(576,681,'kava_extra_enable_breadcrumbs','inherit'),
(581,682,'_wp_page_template','default'),
(582,682,'_thumbnail_id','2130'),
(583,682,'kava_extra_link_target','_blank'),
(584,682,'kava_extra_audio_loop','false'),
(585,682,'kava_extra_audio_autoplay','false'),
(586,682,'kava_extra_audio_preload','false'),
(587,682,'kava_extra_video_type','library'),
(588,682,'kava_extra_video_width','770'),
(589,682,'kava_extra_video_height','480'),
(590,682,'kava_extra_video_loop','false'),
(591,682,'kava_extra_video_autoplay','false'),
(592,682,'kava_extra_video_preload','false'),
(593,682,'kava_extra_enable_breadcrumbs','inherit'),
(598,683,'_wp_page_template','default'),
(599,683,'_thumbnail_id','2131'),
(600,683,'kava_extra_link_target','_blank'),
(601,683,'kava_extra_audio_loop','false'),
(602,683,'kava_extra_audio_autoplay','false'),
(603,683,'kava_extra_audio_preload','false'),
(604,683,'kava_extra_video_type','library'),
(605,683,'kava_extra_video_width','770'),
(606,683,'kava_extra_video_height','480'),
(607,683,'kava_extra_video_loop','false'),
(608,683,'kava_extra_video_autoplay','false'),
(609,683,'kava_extra_video_preload','false'),
(610,683,'kava_extra_enable_breadcrumbs','inherit'),
(615,684,'_wp_page_template','default'),
(616,684,'_thumbnail_id','2132'),
(617,684,'kava_extra_link_target','_blank'),
(618,684,'kava_extra_audio_loop','false'),
(619,684,'kava_extra_audio_autoplay','false'),
(620,684,'kava_extra_audio_preload','false'),
(621,684,'kava_extra_video_type','library'),
(622,684,'kava_extra_video_width','770'),
(623,684,'kava_extra_video_height','480'),
(624,684,'kava_extra_video_loop','false'),
(625,684,'kava_extra_video_autoplay','false'),
(626,684,'kava_extra_video_preload','false'),
(627,684,'kava_extra_enable_breadcrumbs','inherit'),
(632,685,'_wp_page_template','default'),
(633,685,'_thumbnail_id','2133'),
(634,685,'kava_extra_link_target','_blank'),
(635,685,'kava_extra_audio_loop','false'),
(636,685,'kava_extra_audio_autoplay','false'),
(637,685,'kava_extra_audio_preload','false'),
(638,685,'kava_extra_video_type','library'),
(639,685,'kava_extra_video_width','770'),
(640,685,'kava_extra_video_height','480'),
(641,685,'kava_extra_video_loop','false'),
(642,685,'kava_extra_video_autoplay','false'),
(643,685,'kava_extra_video_preload','false'),
(644,685,'kava_extra_enable_breadcrumbs','inherit'),
(649,686,'_wp_page_template','default'),
(650,686,'_thumbnail_id','2133'),
(652,686,'kava_extra_link_target','_blank'),
(653,686,'kava_extra_audio_loop','false'),
(654,686,'kava_extra_audio_autoplay','false'),
(655,686,'kava_extra_audio_preload','false'),
(656,686,'kava_extra_video_type','library'),
(657,686,'kava_extra_video_width','770'),
(658,686,'kava_extra_video_height','480'),
(659,686,'kava_extra_video_loop','false'),
(660,686,'kava_extra_video_autoplay','false'),
(661,686,'kava_extra_video_preload','false'),
(662,686,'kava_extra_enable_breadcrumbs','inherit'),
(665,1507,'_form','<div class=\"row\">\n <div class=\"col-sm-6\"><label style=\"font-size: 16px;\"> NAME *\n [text* text-826 placeholder \"Your name\"] </label></div>\n <div class=\"col-sm-6\"><label style=\"font-size: 16px;\"> WE CAN REACH YOU AT *\n [email* email-113 placeholder \"Your e-mail address\"] </label></div>\n <div class=\"col-sm-12\"><label style=\"font-size: 16px;\"> TELL US ABOUT YOUR PROJECT\n [textarea textarea-280 placeholder \"Your message\"] </label></div>\n <div class=\"col-sm-12\" style=\"font-size: 14px; margin-top:-21px; margin-left:-15px;\">[acceptance acceptance-527] I agree to the <a href=\"#\" style=\"text-decoration:underline\">Privacy Policy</a> and <a href=\"#\" style=\"text-decoration:underline\">Terms of Use</a>, and want to receive news [/acceptance]</div>\n <div class=\"col-sm-12\">[submit \"Send message ➝\"]</div>\n</div>'),
(666,1507,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:46:\"[_site_title] <anastasiia.lukashyna@gmail.com>\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),
(667,1507,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:46:\"[_site_title] <anastasiia.lukashyna@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),
(668,1507,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),
(669,1507,'_locale','en_US'),
(670,1507,'_config_errors','a:1:{s:23:\"mail.additional_headers\";a:1:{i:0;a:2:{s:4:\"code\";i:102;s:4:\"args\";a:3:{s:7:\"message\";s:51:\"Invalid mailbox syntax is used in the %name% field.\";s:6:\"params\";a:1:{s:4:\"name\";s:8:\"Reply-To\";}s:4:\"link\";s:68:\"https://contactform7.com/configuration-errors/invalid-mailbox-syntax\";}}}}'),
(671,1507,'_wxr_import_user_slug','admin'),
(672,2493,'_elementor_template_type','jet_header'),
(673,2493,'_elementor_page_settings','a:3:{s:14:\"jet_conditions\";a:0:{}s:14:\"conditions_top\";s:8:\"singular\";s:23:\"conditions_sub_singular\";s:19:\"singular-front-page\";}'),
(674,2493,'_elementor_edit_mode','builder'),
(675,2493,'_elementor_version','3.1.4'),
(676,2493,'_wp_page_template','default'),
(677,2493,'_elementor_data','[{\"id\":\"0e1ba69\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"1c03896\"}],\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"z_index\":4},\"elements\":[{\"id\":\"39a8e3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.5,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":19,\"align_tablet\":\"flex-start\",\"align_mobile\":\"space-between\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"cd0021f\",\"elType\":\"widget\",\"settings\":{\"logo_type\":\"image\",\"logo_image\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/04\\/logo.svg\",\"id\":2268},\"_element_width\":\"auto\",\"logo_alignment_tablet\":\"flex-end\",\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"auto\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-logo\"}],\"isInner\":false},{\"id\":\"692e893\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":46.016,\"content_position\":\"center\",\"_inline_size_tablet\":55,\"align_tablet\":\"center\",\"align_mobile\":\"flex-end\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"363e952\",\"elType\":\"widget\",\"settings\":{\"menu\":\"2\",\"_element_width\":\"auto\",\"menu_container_border_border\":\"solid\",\"menu_container_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"01\",\"isLinked\":false},\"menu_container_border_color\":\"#2E2C39\",\"menu_container_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"03\",\"isLinked\":false},\"top_item_typography_typography\":\"custom\",\"top_item_typography_font_family\":\"Inter\",\"top_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"top_item_typography_font_weight\":\"400\",\"top_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"top_item_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"top_item_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"016\",\"bottom\":\"7\",\"left\":\"016\",\"isLinked\":false},\"top_level_badge_order\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"top_level_arrow_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"top_level_arrow_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"05\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"018\",\"isLinked\":false},\"top_item_text_color_hover\":\"#ABABB0\",\"top_item_text_color_active\":\"#ABABB0\",\"simple_sub_panel_width\":{\"unit\":\"px\",\"size\":190,\"sizes\":[]},\"simple_sub_panel_box_shadow_box_shadow_type\":\"yes\",\"simple_sub_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.06)\"},\"simple_sub_panel_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"simple_sub_panel_padding\":{\"unit\":\"px\",\"top\":\"014\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"simple_sub_panel_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"sub_menu_item_typography_typography\":\"custom\",\"sub_menu_item_typography_font_family\":\"Inter\",\"sub_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_menu_item_typography_font_weight\":\"400\",\"sub_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"sub_menu_item_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_item_text_color\":\"#2E2C39\",\"sub_item_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"021\",\"isLinked\":false},\"sub_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_item_text_color_hover\":\"#509BF6\",\"sub_item_text_color_active\":\"#509BF6\",\"mobile_menu\":\"2\",\"container-position\":\"left\",\"menu_container_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"toggle_icon_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"container_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"auto\",\"item_label_color\":\"#2E2C39\",\"item_label_color_hover\":\"#509BF6\",\"item_label_color_active\":\"#509BF6\",\"top_item_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-mega-menu\"}],\"isInner\":false},{\"id\":\"ed8e996\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.148,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_tablet\":26,\"align_tablet\":\"flex-end\",\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_order_mobile\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"5966df0\",\"elType\":\"widget\",\"settings\":{\"selected_button_icon_normal\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"button_label_normal\":\"+1(505) 555-0125\",\"selected_button_icon_hover\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"button_label_hover\":\"+1(505) 555-0125\",\"button_url\":{\"url\":\"tel:+1(505)555-0125\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"normal_icon_color\":\"#509BF6\",\"normal_icon_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"normal_icon_box_width\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"normal_icon_box_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"normal_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_icon_color\":\"#509BF6\",\"hover_icon_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_icon_box_width\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_icon_box_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"normal_label_typography_font_weight\":\"500\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_weight\":\"500\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_alignment_mobile\":\"center\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3110d30\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#2E2C39\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false}]'),
(678,2493,'_elementor_controls_usage','a:5:{s:8:\"jet-logo\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:9:\"logo_type\";i:1;s:10:\"logo_image\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_width_tablet\";i:1;s:21:\"_element_width_mobile\";i:1;}s:14:\"_section_style\";a:1:{s:15:\"_padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:10:\"logo_style\";a:1:{s:21:\"logo_alignment_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:9:{s:12:\"_inline_size\";i:3;s:16:\"content_position\";i:3;s:19:\"_inline_size_tablet\";i:3;s:12:\"align_tablet\";i:3;s:12:\"align_mobile\";i:3;s:19:\"column_order_mobile\";i:3;s:19:\"_inline_size_mobile\";i:2;s:23:\"content_position_tablet\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:3;s:14:\"padding_mobile\";i:3;}}}}s:13:\"jet-mega-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"section_general\";a:2:{s:4:\"menu\";i:1;s:11:\"mobile_menu\";i:1;}s:21:\"section_mobile_layout\";a:1:{s:18:\"container-position\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_width_tablet\";i:1;s:21:\"_element_width_mobile\";i:1;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:8:{s:28:\"section_menu_container_style\";a:5:{s:28:\"menu_container_border_border\";i:1;s:27:\"menu_container_border_width\";i:1;s:27:\"menu_container_border_color\";i:1;s:22:\"menu_container_padding\";i:1;s:34:\"menu_container_border_width_tablet\";i:1;}s:23:\"section_main_menu_style\";a:10:{s:30:\"top_item_typography_typography\";i:1;s:31:\"top_item_typography_font_family\";i:1;s:29:\"top_item_typography_font_size\";i:1;s:31:\"top_item_typography_font_weight\";i:1;s:31:\"top_item_typography_line_height\";i:1;s:34:\"top_item_typography_letter_spacing\";i:1;s:16:\"top_item_padding\";i:1;s:25:\"top_item_text_color_hover\";i:1;s:26:\"top_item_text_color_active\";i:1;s:23:\"top_item_padding_tablet\";i:1;}s:19:\"section_badge_style\";a:1:{s:21:\"top_level_badge_order\";i:1;}s:19:\"section_arrow_style\";a:2:{s:20:\"top_level_arrow_size\";i:1;s:22:\"top_level_arrow_margin\";i:1;}s:22:\"section_sub_menu_style\";a:17:{s:22:\"simple_sub_panel_width\";i:1;s:43:\"simple_sub_panel_box_shadow_box_shadow_type\";i:1;s:38:\"simple_sub_panel_box_shadow_box_shadow\";i:1;s:30:\"simple_sub_panel_border_radius\";i:1;s:24:\"simple_sub_panel_padding\";i:1;s:23:\"simple_sub_panel_margin\";i:1;s:35:\"sub_menu_item_typography_typography\";i:1;s:36:\"sub_menu_item_typography_font_family\";i:1;s:34:\"sub_menu_item_typography_font_size\";i:1;s:36:\"sub_menu_item_typography_font_weight\";i:1;s:36:\"sub_menu_item_typography_line_height\";i:1;s:39:\"sub_menu_item_typography_letter_spacing\";i:1;s:19:\"sub_item_text_color\";i:1;s:16:\"sub_item_padding\";i:1;s:15:\"sub_item_margin\";i:1;s:25:\"sub_item_text_color_hover\";i:1;s:26:\"sub_item_text_color_active\";i:1;}s:32:\"section_mobile_menu_toggle_style\";a:1:{s:23:\"toggle_icon_size_mobile\";i:1;}s:35:\"section_mobile_menu_container_style\";a:1:{s:22:\"container_width_mobile\";i:1;}s:31:\"section_mobile_menu_items_style\";a:3:{s:16:\"item_label_color\";i:1;s:22:\"item_label_color_hover\";i:1;s:23:\"item_label_color_active\";i:1;}}}}s:10:\"jet-button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_content\";a:5:{s:27:\"selected_button_icon_normal\";i:1;s:19:\"button_label_normal\";i:2;s:26:\"selected_button_icon_hover\";i:1;s:18:\"button_label_hover\";i:2;s:10:\"button_url\";i:2;}}s:5:\"style\";a:4:{s:26:\"section_button_plane_style\";a:11:{s:14:\"button_padding\";i:1;s:34:\"normal_plane_background_background\";i:2;s:29:\"normal_plane_background_color\";i:2;s:33:\"plane_hover_background_background\";i:2;s:28:\"plane_hover_background_color\";i:2;s:26:\"normal_plane_border_radius\";i:1;s:39:\"normal_plane_box_shadow_box_shadow_type\";i:1;s:34:\"normal_plane_box_shadow_box_shadow\";i:1;s:25:\"plane_hover_border_radius\";i:1;s:38:\"hover_plane_box_shadow_box_shadow_type\";i:1;s:33:\"hover_plane_box_shadow_box_shadow\";i:1;}s:25:\"section_button_icon_style\";a:10:{s:17:\"normal_icon_color\";i:1;s:21:\"normal_icon_font_size\";i:1;s:21:\"normal_icon_box_width\";i:1;s:22:\"normal_icon_box_height\";i:1;s:18:\"normal_icon_margin\";i:1;s:16:\"hover_icon_color\";i:1;s:20:\"hover_icon_font_size\";i:1;s:20:\"hover_icon_box_width\";i:1;s:21:\"hover_icon_box_height\";i:1;s:17:\"hover_icon_margin\";i:1;}s:26:\"section_button_label_style\";a:14:{s:18:\"normal_label_color\";i:2;s:34:\"normal_label_typography_typography\";i:2;s:35:\"normal_label_typography_font_family\";i:2;s:33:\"normal_label_typography_font_size\";i:2;s:35:\"normal_label_typography_font_weight\";i:2;s:35:\"normal_label_typography_line_height\";i:2;s:38:\"normal_label_typography_letter_spacing\";i:2;s:17:\"hover_label_color\";i:2;s:33:\"hover_label_typography_typography\";i:2;s:34:\"hover_label_typography_font_family\";i:2;s:32:\"hover_label_typography_font_size\";i:2;s:34:\"hover_label_typography_font_weight\";i:2;s:34:\"hover_label_typography_line_height\";i:2;s:37:\"hover_label_typography_letter_spacing\";i:2;}s:28:\"section_button_general_style\";a:9:{s:23:\"button_alignment_mobile\";i:1;s:11:\"custom_size\";i:1;s:19:\"button_custom_width\";i:1;s:20:\"button_custom_height\";i:1;s:20:\"normal_border_radius\";i:1;s:28:\"normal_box_shadow_box_shadow\";i:1;s:19:\"hover_border_radius\";i:1;s:32:\"hover_box_shadow_box_shadow_type\";i:1;s:27:\"hover_box_shadow_box_shadow\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:2;}s:17:\"_section_position\";a:3:{s:14:\"_element_width\";i:2;s:21:\"_element_width_mobile\";i:1;s:28:\"_element_custom_width_mobile\";i:1;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:3:{s:14:\"section_layout\";a:2:{s:13:\"content_width\";i:1;s:3:\"gap\";i:1;}s:16:\"section_parallax\";a:1:{s:24:\"jet_parallax_layout_list\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:7:\"z_index\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}s:14:\"section_border\";a:1:{s:21:\"box_shadow_box_shadow\";i:1;}}}}}'),
(679,2494,'_elementor_template_type','jet_header'),
(680,2494,'_elementor_page_settings','a:2:{s:14:\"jet_conditions\";a:0:{}s:14:\"conditions_top\";s:6:\"entire\";}'),
(681,2494,'_elementor_edit_mode','builder'),
(682,2494,'_elementor_version','3.1.4'),
(683,2494,'_wp_page_template','default'),
(684,2494,'_elementor_data','[{\"id\":\"3dae27a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"1c03896\"}],\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"z_index\":4},\"elements\":[{\"id\":\"042a60b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.5,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":19,\"align_tablet\":\"flex-start\",\"align_mobile\":\"space-between\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"eaf35fa\",\"elType\":\"widget\",\"settings\":{\"logo_type\":\"image\",\"logo_image\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/04\\/logo.svg\",\"id\":2268},\"_element_width\":\"auto\",\"logo_alignment_tablet\":\"flex-end\",\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"auto\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-logo\"}],\"isInner\":false},{\"id\":\"b1a5c6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":46.016,\"content_position\":\"center\",\"_inline_size_tablet\":55,\"align_tablet\":\"center\",\"align_mobile\":\"flex-end\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"dfab610\",\"elType\":\"widget\",\"settings\":{\"menu\":\"2\",\"_element_width\":\"auto\",\"menu_container_border_border\":\"solid\",\"menu_container_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"01\",\"isLinked\":false},\"menu_container_border_color\":\"#2E2C39\",\"menu_container_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"03\",\"isLinked\":false},\"top_item_typography_typography\":\"custom\",\"top_item_typography_font_family\":\"Inter\",\"top_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"top_item_typography_font_weight\":\"400\",\"top_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"top_item_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"top_item_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"016\",\"bottom\":\"7\",\"left\":\"016\",\"isLinked\":false},\"top_level_badge_order\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"top_level_arrow_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"top_level_arrow_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"05\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"018\",\"isLinked\":false},\"top_item_text_color_hover\":\"#ABABB0\",\"top_item_text_color_active\":\"#ABABB0\",\"simple_sub_panel_width\":{\"unit\":\"px\",\"size\":190,\"sizes\":[]},\"simple_sub_panel_box_shadow_box_shadow_type\":\"yes\",\"simple_sub_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.06)\"},\"simple_sub_panel_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"simple_sub_panel_padding\":{\"unit\":\"px\",\"top\":\"014\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"simple_sub_panel_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"sub_menu_item_typography_typography\":\"custom\",\"sub_menu_item_typography_font_family\":\"Inter\",\"sub_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_menu_item_typography_font_weight\":\"400\",\"sub_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"sub_menu_item_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_item_text_color\":\"#2E2C39\",\"sub_item_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"021\",\"isLinked\":false},\"sub_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_item_text_color_hover\":\"#509BF6\",\"sub_item_text_color_active\":\"#509BF6\",\"mobile_menu\":\"2\",\"container-position\":\"left\",\"menu_container_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"toggle_icon_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"container_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"auto\",\"item_label_color\":\"#2E2C39\",\"item_label_color_hover\":\"#509BF6\",\"item_label_color_active\":\"#509BF6\",\"top_item_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-mega-menu\"}],\"isInner\":false},{\"id\":\"7d8cc62\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.148,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_tablet\":26,\"align_tablet\":\"flex-end\",\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_order_mobile\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"06bd654\",\"elType\":\"widget\",\"settings\":{\"selected_button_icon_normal\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"button_label_normal\":\"+1(505) 555-0125\",\"selected_button_icon_hover\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"button_label_hover\":\"+1(505) 555-0125\",\"button_url\":{\"url\":\"tel:+1(505)555-0125\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"normal_icon_color\":\"#509BF6\",\"normal_icon_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"normal_icon_box_width\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"normal_icon_box_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"normal_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_icon_color\":\"#509BF6\",\"hover_icon_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_icon_box_width\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_icon_box_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"normal_label_typography_font_weight\":\"500\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_weight\":\"500\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_alignment_mobile\":\"center\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"5bc44a4\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#2E2C39\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false}]'),
(685,2494,'_elementor_controls_usage','a:5:{s:8:\"jet-logo\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:9:\"logo_type\";i:1;s:10:\"logo_image\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_width_tablet\";i:1;s:21:\"_element_width_mobile\";i:1;}s:14:\"_section_style\";a:1:{s:15:\"_padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:10:\"logo_style\";a:1:{s:21:\"logo_alignment_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:9:{s:12:\"_inline_size\";i:3;s:16:\"content_position\";i:3;s:19:\"_inline_size_tablet\";i:3;s:12:\"align_tablet\";i:3;s:12:\"align_mobile\";i:3;s:19:\"column_order_mobile\";i:3;s:19:\"_inline_size_mobile\";i:2;s:23:\"content_position_tablet\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:3;s:14:\"padding_mobile\";i:3;}}}}s:13:\"jet-mega-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"section_general\";a:2:{s:4:\"menu\";i:1;s:11:\"mobile_menu\";i:1;}s:21:\"section_mobile_layout\";a:1:{s:18:\"container-position\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_width_tablet\";i:1;s:21:\"_element_width_mobile\";i:1;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:8:{s:28:\"section_menu_container_style\";a:5:{s:28:\"menu_container_border_border\";i:1;s:27:\"menu_container_border_width\";i:1;s:27:\"menu_container_border_color\";i:1;s:22:\"menu_container_padding\";i:1;s:34:\"menu_container_border_width_tablet\";i:1;}s:23:\"section_main_menu_style\";a:10:{s:30:\"top_item_typography_typography\";i:1;s:31:\"top_item_typography_font_family\";i:1;s:29:\"top_item_typography_font_size\";i:1;s:31:\"top_item_typography_font_weight\";i:1;s:31:\"top_item_typography_line_height\";i:1;s:34:\"top_item_typography_letter_spacing\";i:1;s:16:\"top_item_padding\";i:1;s:25:\"top_item_text_color_hover\";i:1;s:26:\"top_item_text_color_active\";i:1;s:23:\"top_item_padding_tablet\";i:1;}s:19:\"section_badge_style\";a:1:{s:21:\"top_level_badge_order\";i:1;}s:19:\"section_arrow_style\";a:2:{s:20:\"top_level_arrow_size\";i:1;s:22:\"top_level_arrow_margin\";i:1;}s:22:\"section_sub_menu_style\";a:17:{s:22:\"simple_sub_panel_width\";i:1;s:43:\"simple_sub_panel_box_shadow_box_shadow_type\";i:1;s:38:\"simple_sub_panel_box_shadow_box_shadow\";i:1;s:30:\"simple_sub_panel_border_radius\";i:1;s:24:\"simple_sub_panel_padding\";i:1;s:23:\"simple_sub_panel_margin\";i:1;s:35:\"sub_menu_item_typography_typography\";i:1;s:36:\"sub_menu_item_typography_font_family\";i:1;s:34:\"sub_menu_item_typography_font_size\";i:1;s:36:\"sub_menu_item_typography_font_weight\";i:1;s:36:\"sub_menu_item_typography_line_height\";i:1;s:39:\"sub_menu_item_typography_letter_spacing\";i:1;s:19:\"sub_item_text_color\";i:1;s:16:\"sub_item_padding\";i:1;s:15:\"sub_item_margin\";i:1;s:25:\"sub_item_text_color_hover\";i:1;s:26:\"sub_item_text_color_active\";i:1;}s:32:\"section_mobile_menu_toggle_style\";a:1:{s:23:\"toggle_icon_size_mobile\";i:1;}s:35:\"section_mobile_menu_container_style\";a:1:{s:22:\"container_width_mobile\";i:1;}s:31:\"section_mobile_menu_items_style\";a:3:{s:16:\"item_label_color\";i:1;s:22:\"item_label_color_hover\";i:1;s:23:\"item_label_color_active\";i:1;}}}}s:10:\"jet-button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_content\";a:5:{s:27:\"selected_button_icon_normal\";i:1;s:19:\"button_label_normal\";i:2;s:26:\"selected_button_icon_hover\";i:1;s:18:\"button_label_hover\";i:2;s:10:\"button_url\";i:2;}}s:5:\"style\";a:4:{s:26:\"section_button_plane_style\";a:11:{s:14:\"button_padding\";i:1;s:34:\"normal_plane_background_background\";i:2;s:29:\"normal_plane_background_color\";i:2;s:33:\"plane_hover_background_background\";i:2;s:28:\"plane_hover_background_color\";i:2;s:26:\"normal_plane_border_radius\";i:1;s:39:\"normal_plane_box_shadow_box_shadow_type\";i:1;s:34:\"normal_plane_box_shadow_box_shadow\";i:1;s:25:\"plane_hover_border_radius\";i:1;s:38:\"hover_plane_box_shadow_box_shadow_type\";i:1;s:33:\"hover_plane_box_shadow_box_shadow\";i:1;}s:25:\"section_button_icon_style\";a:10:{s:17:\"normal_icon_color\";i:1;s:21:\"normal_icon_font_size\";i:1;s:21:\"normal_icon_box_width\";i:1;s:22:\"normal_icon_box_height\";i:1;s:18:\"normal_icon_margin\";i:1;s:16:\"hover_icon_color\";i:1;s:20:\"hover_icon_font_size\";i:1;s:20:\"hover_icon_box_width\";i:1;s:21:\"hover_icon_box_height\";i:1;s:17:\"hover_icon_margin\";i:1;}s:26:\"section_button_label_style\";a:14:{s:18:\"normal_label_color\";i:2;s:34:\"normal_label_typography_typography\";i:2;s:35:\"normal_label_typography_font_family\";i:2;s:33:\"normal_label_typography_font_size\";i:2;s:35:\"normal_label_typography_font_weight\";i:2;s:35:\"normal_label_typography_line_height\";i:2;s:38:\"normal_label_typography_letter_spacing\";i:2;s:17:\"hover_label_color\";i:2;s:33:\"hover_label_typography_typography\";i:2;s:34:\"hover_label_typography_font_family\";i:2;s:32:\"hover_label_typography_font_size\";i:2;s:34:\"hover_label_typography_font_weight\";i:2;s:34:\"hover_label_typography_line_height\";i:2;s:37:\"hover_label_typography_letter_spacing\";i:2;}s:28:\"section_button_general_style\";a:9:{s:23:\"button_alignment_mobile\";i:1;s:11:\"custom_size\";i:1;s:19:\"button_custom_width\";i:1;s:20:\"button_custom_height\";i:1;s:20:\"normal_border_radius\";i:1;s:28:\"normal_box_shadow_box_shadow\";i:1;s:19:\"hover_border_radius\";i:1;s:32:\"hover_box_shadow_box_shadow_type\";i:1;s:27:\"hover_box_shadow_box_shadow\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:2;}s:17:\"_section_position\";a:3:{s:14:\"_element_width\";i:2;s:21:\"_element_width_mobile\";i:1;s:28:\"_element_custom_width_mobile\";i:1;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:3:{s:14:\"section_layout\";a:2:{s:13:\"content_width\";i:1;s:3:\"gap\";i:1;}s:16:\"section_parallax\";a:1:{s:24:\"jet_parallax_layout_list\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:7:\"z_index\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}}'),
(686,2495,'_elementor_template_type','jet_header'),
(687,2495,'_elementor_page_settings','a:4:{s:14:\"jet_conditions\";a:0:{}s:14:\"conditions_top\";s:8:\"singular\";s:23:\"conditions_sub_singular\";s:18:\"singular-post-type\";s:35:\"conditions_singular-post-type_types\";a:1:{i:0;s:4:\"post\";}}'),
(688,2495,'_elementor_edit_mode','builder'),
(689,2495,'_elementor_version','3.1.4'),
(690,2495,'_wp_page_template','default'),
(691,2495,'_elementor_data','[{\"id\":\"a651690\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"1c03896\"}],\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"z_index\":4,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"48ad19b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.5,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":19,\"align_tablet\":\"flex-start\",\"align_mobile\":\"space-between\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"50f4f77\",\"elType\":\"widget\",\"settings\":{\"logo_type\":\"image\",\"logo_image\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/04\\/logo.svg\",\"id\":2268},\"_element_width\":\"auto\",\"logo_alignment_tablet\":\"flex-end\",\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"auto\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-logo\"}],\"isInner\":false},{\"id\":\"2c4b7c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":46.016,\"content_position\":\"center\",\"_inline_size_tablet\":55,\"align_tablet\":\"center\",\"align_mobile\":\"flex-end\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"1a8064c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"2\",\"_element_width\":\"auto\",\"menu_container_border_border\":\"solid\",\"menu_container_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"01\",\"isLinked\":false},\"menu_container_border_color\":\"#2E2C39\",\"menu_container_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"03\",\"isLinked\":false},\"top_item_typography_typography\":\"custom\",\"top_item_typography_font_family\":\"Inter\",\"top_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"top_item_typography_font_weight\":\"400\",\"top_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"top_item_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"top_item_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"016\",\"bottom\":\"7\",\"left\":\"016\",\"isLinked\":false},\"top_level_badge_order\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"top_level_arrow_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"top_level_arrow_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"05\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"018\",\"isLinked\":false},\"top_item_text_color_hover\":\"#ABABB0\",\"top_item_text_color_active\":\"#ABABB0\",\"simple_sub_panel_width\":{\"unit\":\"px\",\"size\":190,\"sizes\":[]},\"simple_sub_panel_box_shadow_box_shadow_type\":\"yes\",\"simple_sub_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.06)\"},\"simple_sub_panel_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"simple_sub_panel_padding\":{\"unit\":\"px\",\"top\":\"014\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"simple_sub_panel_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"sub_menu_item_typography_typography\":\"custom\",\"sub_menu_item_typography_font_family\":\"Inter\",\"sub_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_menu_item_typography_font_weight\":\"400\",\"sub_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"sub_menu_item_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_item_text_color\":\"#2E2C39\",\"sub_item_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"021\",\"isLinked\":false},\"sub_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_item_text_color_hover\":\"#509BF6\",\"sub_item_text_color_active\":\"#509BF6\",\"mobile_menu\":\"2\",\"container-position\":\"left\",\"menu_container_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"toggle_icon_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"container_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"auto\",\"item_label_color\":\"#2E2C39\",\"item_label_color_hover\":\"#509BF6\",\"item_label_color_active\":\"#509BF6\",\"top_item_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-mega-menu\"}],\"isInner\":false},{\"id\":\"f867b19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.148,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_tablet\":26,\"align_tablet\":\"flex-end\",\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_order_mobile\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"83b0b6c\",\"elType\":\"widget\",\"settings\":{\"selected_button_icon_normal\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"button_label_normal\":\"+1(505) 555-0125\",\"selected_button_icon_hover\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"button_label_hover\":\"+1(505) 555-0125\",\"button_url\":{\"url\":\"tel:+1(505)555-0125\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"normal_icon_color\":\"#509BF6\",\"normal_icon_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"normal_icon_box_width\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"normal_icon_box_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"normal_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_icon_color\":\"#509BF6\",\"hover_icon_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_icon_box_width\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_icon_box_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"normal_label_typography_font_weight\":\"500\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_weight\":\"500\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_alignment_mobile\":\"center\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"8f4aa9e\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#2E2C39\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false}]'),
(692,2495,'_elementor_controls_usage','a:5:{s:8:\"jet-logo\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:9:\"logo_type\";i:1;s:10:\"logo_image\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_width_tablet\";i:1;s:21:\"_element_width_mobile\";i:1;}s:14:\"_section_style\";a:1:{s:15:\"_padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:10:\"logo_style\";a:1:{s:21:\"logo_alignment_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:9:{s:12:\"_inline_size\";i:3;s:16:\"content_position\";i:3;s:19:\"_inline_size_tablet\";i:3;s:12:\"align_tablet\";i:3;s:12:\"align_mobile\";i:3;s:19:\"column_order_mobile\";i:3;s:19:\"_inline_size_mobile\";i:2;s:23:\"content_position_tablet\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:3;s:14:\"padding_mobile\";i:3;}}}}s:13:\"jet-mega-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"section_general\";a:2:{s:4:\"menu\";i:1;s:11:\"mobile_menu\";i:1;}s:21:\"section_mobile_layout\";a:1:{s:18:\"container-position\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_width_tablet\";i:1;s:21:\"_element_width_mobile\";i:1;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:8:{s:28:\"section_menu_container_style\";a:5:{s:28:\"menu_container_border_border\";i:1;s:27:\"menu_container_border_width\";i:1;s:27:\"menu_container_border_color\";i:1;s:22:\"menu_container_padding\";i:1;s:34:\"menu_container_border_width_tablet\";i:1;}s:23:\"section_main_menu_style\";a:10:{s:30:\"top_item_typography_typography\";i:1;s:31:\"top_item_typography_font_family\";i:1;s:29:\"top_item_typography_font_size\";i:1;s:31:\"top_item_typography_font_weight\";i:1;s:31:\"top_item_typography_line_height\";i:1;s:34:\"top_item_typography_letter_spacing\";i:1;s:16:\"top_item_padding\";i:1;s:25:\"top_item_text_color_hover\";i:1;s:26:\"top_item_text_color_active\";i:1;s:23:\"top_item_padding_tablet\";i:1;}s:19:\"section_badge_style\";a:1:{s:21:\"top_level_badge_order\";i:1;}s:19:\"section_arrow_style\";a:2:{s:20:\"top_level_arrow_size\";i:1;s:22:\"top_level_arrow_margin\";i:1;}s:22:\"section_sub_menu_style\";a:17:{s:22:\"simple_sub_panel_width\";i:1;s:43:\"simple_sub_panel_box_shadow_box_shadow_type\";i:1;s:38:\"simple_sub_panel_box_shadow_box_shadow\";i:1;s:30:\"simple_sub_panel_border_radius\";i:1;s:24:\"simple_sub_panel_padding\";i:1;s:23:\"simple_sub_panel_margin\";i:1;s:35:\"sub_menu_item_typography_typography\";i:1;s:36:\"sub_menu_item_typography_font_family\";i:1;s:34:\"sub_menu_item_typography_font_size\";i:1;s:36:\"sub_menu_item_typography_font_weight\";i:1;s:36:\"sub_menu_item_typography_line_height\";i:1;s:39:\"sub_menu_item_typography_letter_spacing\";i:1;s:19:\"sub_item_text_color\";i:1;s:16:\"sub_item_padding\";i:1;s:15:\"sub_item_margin\";i:1;s:25:\"sub_item_text_color_hover\";i:1;s:26:\"sub_item_text_color_active\";i:1;}s:32:\"section_mobile_menu_toggle_style\";a:1:{s:23:\"toggle_icon_size_mobile\";i:1;}s:35:\"section_mobile_menu_container_style\";a:1:{s:22:\"container_width_mobile\";i:1;}s:31:\"section_mobile_menu_items_style\";a:3:{s:16:\"item_label_color\";i:1;s:22:\"item_label_color_hover\";i:1;s:23:\"item_label_color_active\";i:1;}}}}s:10:\"jet-button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_content\";a:5:{s:27:\"selected_button_icon_normal\";i:1;s:19:\"button_label_normal\";i:2;s:26:\"selected_button_icon_hover\";i:1;s:18:\"button_label_hover\";i:2;s:10:\"button_url\";i:2;}}s:5:\"style\";a:4:{s:26:\"section_button_plane_style\";a:11:{s:14:\"button_padding\";i:1;s:34:\"normal_plane_background_background\";i:2;s:29:\"normal_plane_background_color\";i:2;s:33:\"plane_hover_background_background\";i:2;s:28:\"plane_hover_background_color\";i:2;s:26:\"normal_plane_border_radius\";i:1;s:39:\"normal_plane_box_shadow_box_shadow_type\";i:1;s:34:\"normal_plane_box_shadow_box_shadow\";i:1;s:25:\"plane_hover_border_radius\";i:1;s:38:\"hover_plane_box_shadow_box_shadow_type\";i:1;s:33:\"hover_plane_box_shadow_box_shadow\";i:1;}s:25:\"section_button_icon_style\";a:10:{s:17:\"normal_icon_color\";i:1;s:21:\"normal_icon_font_size\";i:1;s:21:\"normal_icon_box_width\";i:1;s:22:\"normal_icon_box_height\";i:1;s:18:\"normal_icon_margin\";i:1;s:16:\"hover_icon_color\";i:1;s:20:\"hover_icon_font_size\";i:1;s:20:\"hover_icon_box_width\";i:1;s:21:\"hover_icon_box_height\";i:1;s:17:\"hover_icon_margin\";i:1;}s:26:\"section_button_label_style\";a:14:{s:18:\"normal_label_color\";i:2;s:34:\"normal_label_typography_typography\";i:2;s:35:\"normal_label_typography_font_family\";i:2;s:33:\"normal_label_typography_font_size\";i:2;s:35:\"normal_label_typography_font_weight\";i:2;s:35:\"normal_label_typography_line_height\";i:2;s:38:\"normal_label_typography_letter_spacing\";i:2;s:17:\"hover_label_color\";i:2;s:33:\"hover_label_typography_typography\";i:2;s:34:\"hover_label_typography_font_family\";i:2;s:32:\"hover_label_typography_font_size\";i:2;s:34:\"hover_label_typography_font_weight\";i:2;s:34:\"hover_label_typography_line_height\";i:2;s:37:\"hover_label_typography_letter_spacing\";i:2;}s:28:\"section_button_general_style\";a:9:{s:23:\"button_alignment_mobile\";i:1;s:11:\"custom_size\";i:1;s:19:\"button_custom_width\";i:1;s:20:\"button_custom_height\";i:1;s:20:\"normal_border_radius\";i:1;s:28:\"normal_box_shadow_box_shadow\";i:1;s:19:\"hover_border_radius\";i:1;s:32:\"hover_box_shadow_box_shadow_type\";i:1;s:27:\"hover_box_shadow_box_shadow\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:2;}s:17:\"_section_position\";a:3:{s:14:\"_element_width\";i:2;s:21:\"_element_width_mobile\";i:1;s:28:\"_element_custom_width_mobile\";i:1;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:3:{s:14:\"section_layout\";a:2:{s:13:\"content_width\";i:1;s:3:\"gap\";i:1;}s:16:\"section_parallax\";a:1:{s:24:\"jet_parallax_layout_list\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:7:\"z_index\";i:1;s:6:\"margin\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}}'),
(693,2496,'_wp_page_template','elementor_header_footer'),
(694,2496,'_elementor_edit_mode','builder'),
(695,2496,'_elementor_template_type','wp-page'),
(696,2496,'_elementor_version','3.1.4'),
(697,2496,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/04\\/home_bg.png\",\"id\":2036},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0247\",\"right\":\"0\",\"bottom\":\"0247\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#C6CDD7\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#C6CDD700\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":80,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"614ecbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Welcome to Calcue!<br>Best dedicated to serve you!\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"You run your business. We\\u2019ll do your bookkeeping.\",\"header_size\":\"h1\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e231f5b\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"5123d6e\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ebd6bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You are welcome<\\/p>\",\"align\":\"center\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial freedom could be just one phonecall away\\u2026\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"041\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf3453a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A balanced approach to developing a strategy and an effective system for managing, attracting and placing capital is a key success factor. Our team is ready to analyze existing processes, develop a management system that will reduce costs and increase the efficiency of your work.<\\/p>\",\"align\":\"center\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e5343d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Quality working\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/hand.svg\",\"id\":1021},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A team of professionals, driven by a single goal - to bring maximum benefit to the client.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"a9661b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3d2156\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Expert consultants\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/users.svg\",\"id\":1022},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_color\":\"#2E2C39\",\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"db19418\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Only experienced specialists. Our mission is to continuously improve the efficiency of the customer\'s business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(698,2496,'_elementor_controls_usage','a:11:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:21;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:10:{s:10:\"text_color\";i:21;s:21:\"typography_typography\";i:21;s:22:\"typography_font_family\";i:21;s:20:\"typography_font_size\";i:21;s:22:\"typography_font_weight\";i:21;s:25:\"typography_text_transform\";i:8;s:22:\"typography_line_height\";i:21;s:5:\"align\";i:6;s:25:\"typography_letter_spacing\";i:18;s:27:\"typography_font_size_tablet\";i:12;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:21;s:14:\"_margin_tablet\";i:8;s:15:\"_padding_tablet\";i:2;s:8:\"_padding\";i:2;s:15:\"_padding_mobile\";i:1;}s:17:\"_section_position\";a:2:{s:21:\"_element_custom_width\";i:2;s:14:\"_element_width\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:11;s:11:\"header_size\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:11:\"title_color\";i:11;s:21:\"typography_typography\";i:11;s:22:\"typography_font_family\";i:11;s:20:\"typography_font_size\";i:11;s:22:\"typography_font_weight\";i:11;s:22:\"typography_line_height\";i:11;s:25:\"typography_letter_spacing\";i:8;s:27:\"typography_font_size_tablet\";i:11;s:27:\"typography_font_size_mobile\";i:8;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:11;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";i:1;s:8:\"_padding\";i:1;s:15:\"_padding_mobile\";i:1;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:7;s:21:\"_element_custom_width\";i:7;}}}}s:10:\"jet-button\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:19:\"button_label_normal\";i:11;s:18:\"button_label_hover\";i:11;s:10:\"button_url\";i:11;}}s:5:\"style\";a:3:{s:28:\"section_button_general_style\";a:11:{s:11:\"custom_size\";i:7;s:19:\"button_custom_width\";i:7;s:20:\"button_custom_height\";i:7;s:20:\"normal_border_radius\";i:11;s:33:\"normal_box_shadow_box_shadow_type\";i:5;s:28:\"normal_box_shadow_box_shadow\";i:7;s:19:\"hover_border_radius\";i:7;s:32:\"hover_box_shadow_box_shadow_type\";i:7;s:27:\"hover_box_shadow_box_shadow\";i:7;s:24:\"button_content_alignment\";i:1;s:16:\"button_alignment\";i:5;}s:26:\"section_button_plane_style\";a:17:{s:34:\"normal_plane_background_background\";i:11;s:29:\"normal_plane_background_color\";i:11;s:26:\"normal_plane_border_radius\";i:11;s:39:\"normal_plane_box_shadow_box_shadow_type\";i:7;s:34:\"normal_plane_box_shadow_box_shadow\";i:7;s:33:\"plane_hover_background_background\";i:11;s:28:\"plane_hover_background_color\";i:11;s:25:\"plane_hover_border_radius\";i:7;s:38:\"hover_plane_box_shadow_box_shadow_type\";i:7;s:33:\"hover_plane_box_shadow_box_shadow\";i:7;s:14:\"button_padding\";i:4;s:26:\"normal_plane_border_border\";i:4;s:25:\"normal_plane_border_width\";i:4;s:25:\"normal_plane_border_color\";i:4;s:25:\"plane_hover_border_border\";i:4;s:24:\"plane_hover_border_width\";i:4;s:24:\"plane_hover_border_color\";i:4;}s:26:\"section_button_label_style\";a:16:{s:18:\"normal_label_color\";i:11;s:34:\"normal_label_typography_typography\";i:11;s:35:\"normal_label_typography_font_family\";i:11;s:33:\"normal_label_typography_font_size\";i:11;s:35:\"normal_label_typography_font_weight\";i:11;s:35:\"normal_label_typography_line_height\";i:11;s:38:\"normal_label_typography_letter_spacing\";i:11;s:17:\"hover_label_color\";i:11;s:33:\"hover_label_typography_typography\";i:11;s:34:\"hover_label_typography_font_family\";i:11;s:32:\"hover_label_typography_font_size\";i:11;s:34:\"hover_label_typography_font_weight\";i:11;s:34:\"hover_label_typography_line_height\";i:11;s:37:\"hover_label_typography_letter_spacing\";i:11;s:38:\"normal_label_typography_text_transform\";i:4;s:37:\"hover_label_typography_text_transform\";i:4;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:7;s:14:\"_margin_mobile\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:7;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:23;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:12:\"_inline_size\";i:23;s:19:\"_inline_size_tablet\";i:8;s:21:\"space_between_widgets\";i:2;s:5:\"align\";i:3;s:19:\"column_order_mobile\";i:1;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:7:\"padding\";i:18;s:14:\"padding_tablet\";i:15;s:6:\"margin\";i:6;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:3;s:14:\"padding_mobile\";i:3;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_radius\";i:4;s:26:\"box_shadow_box_shadow_type\";i:3;s:21:\"box_shadow_box_shadow\";i:3;}s:12:\"section_typo\";a:1:{s:16:\"color_link_hover\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:3:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:12;s:3:\"gap\";i:12;s:6:\"layout\";i:1;}s:16:\"section_parallax\";a:1:{s:24:\"jet_parallax_layout_list\";i:13;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:10:{s:21:\"background_background\";i:7;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;s:16:\"background_color\";i:6;s:21:\"background_color_stop\";i:1;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;s:19:\"background_bg_width\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:11;s:14:\"padding_tablet\";i:10;s:6:\"margin\";i:2;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:8;}}s:5:\"style\";a:3:{s:18:\"section_icon_style\";a:2:{s:9:\"icon_size\";i:8;s:10:\"icon_color\";i:7;}s:18:\"section_text_style\";a:10:{s:10:\"text_color\";i:8;s:11:\"text_indent\";i:8;s:26:\"icon_typography_typography\";i:8;s:27:\"icon_typography_font_family\";i:8;s:25:\"icon_typography_font_size\";i:8;s:32:\"icon_typography_font_size_tablet\";i:8;s:32:\"icon_typography_font_size_mobile\";i:2;s:27:\"icon_typography_font_weight\";i:8;s:27:\"icon_typography_line_height\";i:8;s:30:\"icon_typography_letter_spacing\";i:6;}s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:6;s:10:\"icon_align\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;s:14:\"_margin_mobile\";i:2;}s:17:\"_section_position\";a:3:{s:21:\"_element_custom_width\";i:1;s:14:\"_element_width\";i:2;s:21:\"_element_width_mobile\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:12:\"width_mobile\";i:1;}}}}s:9:\"jet-video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"section_video\";a:6:{s:10:\"video_type\";i:1;s:11:\"youtube_url\";i:1;s:9:\"vimeo_url\";i:1;s:12:\"aspect_ratio\";i:1;s:8:\"autoplay\";i:1;s:4:\"loop\";i:1;}s:25:\"section_thumbnail_overlay\";a:1:{s:9:\"thumbnail\";i:1;}s:19:\"section_play_button\";a:1:{s:25:\"selected_play_button_icon\";i:1;}}}}s:17:\"jet-pricing-table\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:10;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:15:\"section_general\";a:3:{s:5:\"title\";i:2;s:8:\"subtitle\";i:2;s:17:\"subtitle_html_tag\";i:2;}s:13:\"section_price\";a:3:{s:5:\"price\";i:2;s:12:\"price_suffix\";i:2;s:10:\"price_desc\";i:2;}s:16:\"section_features\";a:3:{s:13:\"features_list\";i:2;s:29:\"selected_included_bullet_icon\";i:2;s:29:\"selected_excluded_bullet_icon\";i:2;}s:14:\"section_action\";a:2:{s:11:\"button_text\";i:2;s:10:\"button_url\";i:2;}}s:5:\"style\";a:5:{s:19:\"section_table_style\";a:3:{s:19:\"table_border_border\";i:2;s:18:\"table_border_width\";i:2;s:13:\"table_padding\";i:2;}s:20:\"section_header_style\";a:14:{s:11:\"title_color\";i:2;s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_family\";i:2;s:26:\"title_typography_font_size\";i:2;s:28:\"title_typography_font_weight\";i:2;s:28:\"title_typography_line_height\";i:2;s:31:\"title_typography_letter_spacing\";i:2;s:14:\"subtitle_color\";i:2;s:30:\"subtitle_typography_typography\";i:2;s:31:\"subtitle_typography_font_family\";i:2;s:29:\"subtitle_typography_font_size\";i:2;s:31:\"subtitle_typography_font_weight\";i:2;s:31:\"subtitle_typography_line_height\";i:2;s:34:\"subtitle_typography_letter_spacing\";i:2;}s:21:\"section_pricing_style\";a:30:{s:18:\"price_prefix_color\";i:2;s:34:\"price_prefix_typography_typography\";i:2;s:35:\"price_prefix_typography_font_family\";i:2;s:33:\"price_prefix_typography_font_size\";i:2;s:35:\"price_prefix_typography_font_weight\";i:2;s:35:\"price_prefix_typography_line_height\";i:2;s:38:\"price_prefix_typography_letter_spacing\";i:2;s:11:\"price_color\";i:2;s:27:\"price_typography_typography\";i:2;s:28:\"price_typography_font_family\";i:2;s:26:\"price_typography_font_size\";i:2;s:28:\"price_typography_font_weight\";i:2;s:28:\"price_typography_line_height\";i:2;s:31:\"price_typography_letter_spacing\";i:2;s:18:\"price_suffix_color\";i:2;s:34:\"price_suffix_typography_typography\";i:2;s:35:\"price_suffix_typography_font_family\";i:2;s:33:\"price_suffix_typography_font_size\";i:2;s:35:\"price_suffix_typography_font_weight\";i:2;s:35:\"price_suffix_typography_line_height\";i:2;s:38:\"price_suffix_typography_letter_spacing\";i:2;s:16:\"price_desc_color\";i:2;s:32:\"price_desc_typography_typography\";i:2;s:33:\"price_desc_typography_font_family\";i:2;s:31:\"price_desc_typography_font_size\";i:2;s:33:\"price_desc_typography_font_weight\";i:2;s:33:\"price_desc_typography_line_height\";i:2;s:36:\"price_desc_typography_letter_spacing\";i:2;s:14:\"price_desc_gap\";i:2;s:13:\"price_padding\";i:2;}s:22:\"section_features_style\";a:15:{s:16:\"features_padding\";i:2;s:30:\"features_typography_typography\";i:2;s:31:\"features_typography_font_family\";i:2;s:29:\"features_typography_font_size\";i:2;s:31:\"features_typography_font_weight\";i:2;s:31:\"features_typography_line_height\";i:2;s:34:\"features_typography_letter_spacing\";i:2;s:18:\"features_alignment\";i:2;s:18:\"inc_features_color\";i:2;s:20:\"inc_bullet_icon_size\";i:2;s:16:\"inc_bullet_color\";i:2;s:20:\"exc_bullet_icon_size\";i:2;s:23:\"features_padding_tablet\";i:2;s:23:\"features_padding_mobile\";i:2;s:36:\"features_typography_font_size_tablet\";i:2;}s:27:\"section_action_button_style\";a:16:{s:15:\"button_bg_color\";i:2;s:12:\"button_color\";i:2;s:28:\"button_typography_typography\";i:2;s:29:\"button_typography_font_family\";i:2;s:27:\"button_typography_font_size\";i:2;s:29:\"button_typography_font_weight\";i:2;s:29:\"button_typography_line_height\";i:2;s:32:\"button_typography_letter_spacing\";i:2;s:14:\"button_padding\";i:2;s:20:\"button_border_radius\";i:2;s:33:\"button_box_shadow_box_shadow_type\";i:1;s:28:\"button_box_shadow_box_shadow\";i:2;s:21:\"button_hover_bg_color\";i:2;s:18:\"button_hover_color\";i:2;s:39:\"button_hover_box_shadow_box_shadow_type\";i:1;s:34:\"button_hover_box_shadow_box_shadow\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;s:14:\"_margin_mobile\";i:2;}s:15:\"_section_border\";a:3:{s:13:\"_border_width\";i:2;s:13:\"_border_color\";i:2;s:22:\"_box_shadow_box_shadow\";i:2;}s:17:\"_section_position\";a:4:{s:14:\"_element_width\";i:2;s:21:\"_element_custom_width\";i:2;s:21:\"_element_width_mobile\";i:2;s:28:\"_element_custom_width_mobile\";i:2;}}}}s:22:\"jet-blog-smart-listing\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:21:\"section_custom_fields\";a:2:{s:18:\"title_related_meta\";i:1;s:20:\"content_related_meta\";i:1;}s:15:\"section_general\";a:12:{s:9:\"title_tag\";i:1;s:13:\"featured_post\";i:1;s:13:\"posts_columns\";i:1;s:10:\"posts_rows\";i:1;s:10:\"image_size\";i:1;s:14:\"image_position\";i:1;s:14:\"excerpt_length\";i:1;s:13:\"meta_position\";i:1;s:11:\"show_author\";i:1;s:25:\"selected_show_author_icon\";i:1;s:23:\"selected_show_date_icon\";i:1;s:20:\"posts_columns_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_post_style\";a:26:{s:11:\"post_margin\";i:1;s:19:\"post_content_margin\";i:1;s:16:\"post_title_color\";i:1;s:22:\"post_title_color_hover\";i:1;s:32:\"post_title_typography_typography\";i:1;s:33:\"post_title_typography_font_family\";i:1;s:31:\"post_title_typography_font_size\";i:1;s:33:\"post_title_typography_font_weight\";i:1;s:33:\"post_title_typography_line_height\";i:1;s:36:\"post_title_typography_letter_spacing\";i:1;s:17:\"post_title_margin\";i:1;s:15:\"post_text_color\";i:1;s:31:\"post_text_typography_typography\";i:1;s:32:\"post_text_typography_font_family\";i:1;s:30:\"post_text_typography_font_size\";i:1;s:32:\"post_text_typography_font_weight\";i:1;s:32:\"post_text_typography_line_height\";i:1;s:35:\"post_text_typography_letter_spacing\";i:1;s:16:\"post_text_margin\";i:1;s:18:\"post_margin_tablet\";i:1;s:26:\"post_content_margin_tablet\";i:1;s:38:\"post_title_typography_font_size_tablet\";i:1;s:38:\"post_title_typography_font_size_mobile\";i:1;s:24:\"post_title_margin_tablet\";i:1;s:37:\"post_text_typography_font_size_tablet\";i:1;s:23:\"post_text_margin_tablet\";i:1;}s:18:\"section_meta_style\";a:10:{s:10:\"meta_color\";i:1;s:15:\"meta_link_color\";i:1;s:21:\"meta_link_color_hover\";i:1;s:26:\"meta_typography_typography\";i:1;s:27:\"meta_typography_font_family\";i:1;s:25:\"meta_typography_font_size\";i:1;s:27:\"meta_typography_font_weight\";i:1;s:27:\"meta_typography_line_height\";i:1;s:30:\"meta_typography_letter_spacing\";i:1;s:11:\"meta_margin\";i:1;}}}}}'),
(743,2512,'_elementor_edit_mode','builder'),
(744,2512,'_elementor_template_type','kit'),
(750,1653,'_elementor_page_assets','a:0:{}'),
(751,50,'_elementor_page_assets','a:0:{}'),
(752,711,'_elementor_page_assets','a:0:{}'),
(761,758,'_elementor_page_assets','a:0:{}'),
(762,1653,'_edit_lock','1731919234:9'),
(763,50,'_edit_lock','1731920593:9'),
(766,2460,'_elementor_page_assets','a:0:{}'),
(767,2465,'_elementor_page_assets','a:0:{}'),
(777,2515,'_wp_attached_file','2024/06/main-screen-laptop.webp'),
(778,2515,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1246;s:6:\"height\";i:694;s:4:\"file\";s:31:\"2024/06/main-screen-laptop.webp\";s:8:\"filesize\";i:119132;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"main-screen-laptop-300x167.webp\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4886;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"main-screen-laptop-1024x570.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:29604;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"main-screen-laptop-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3230;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"main-screen-laptop-768x428.webp\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19058;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:31:\"main-screen-laptop-370x265.webp\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8638;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:30:\"main-screen-laptop-150x85.webp\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2072;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:31:\"main-screen-laptop-230x230.webp\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5630;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:31:\"main-screen-laptop-400x400.webp\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12348;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:31:\"main-screen-laptop-370x500.webp\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13436;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:31:\"main-screen-laptop-570x450.webp\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17984;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:32:\"main-screen-laptop-1170x650.webp\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:35380;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:31:\"main-screen-laptop-600x334.webp\";s:5:\"width\";i:600;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13612;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:31:\"main-screen-laptop-640x640.webp\";s:5:\"width\";i:640;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:23676;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:32:\"main-screen-laptop-1246x640.webp\";s:5:\"width\";i:1246;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:36760;}s:26:\"elementor_custom_1200x1200\";a:4:{s:4:\"file\";s:83:\"elementor/thumbs/main-screen-laptop-qp3qth7y5cwqicmx8ypbi6xcnoo1gvgoyuzhpohvrw.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/webp\";}s:25:\"elementor_custom_1246x694\";a:4:{s:4:\"file\";s:83:\"elementor/thumbs/main-screen-laptop-qp3qth7ypj2cwn2djqe2zk6xt8cztdmlc8res6neo0.webp\";s:5:\"width\";i:1246;s:6:\"height\";i:694;s:9:\"mime-type\";s:10:\"image/webp\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(788,2516,'_wp_attached_file','2024/06/coin-wallet.webp'),
(789,2516,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1185;s:6:\"height\";i:1185;s:4:\"file\";s:24:\"2024/06/coin-wallet.webp\";s:8:\"filesize\";i:70064;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"coin-wallet-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11210;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"coin-wallet-1024x1024.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:67670;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"coin-wallet-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4442;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"coin-wallet-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:46230;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:24:\"coin-wallet-370x265.webp\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12744;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:23:\"coin-wallet-150x85.webp\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3138;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:24:\"coin-wallet-230x230.webp\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7798;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:24:\"coin-wallet-400x400.webp\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17392;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:24:\"coin-wallet-370x500.webp\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:25038;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:24:\"coin-wallet-570x450.webp\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:26698;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:25:\"coin-wallet-1170x650.webp\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:54304;}s:13:\"kava-thumb-xl\";a:5:{s:4:\"file\";s:26:\"coin-wallet-1185x1080.webp\";s:5:\"width\";i:1185;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:80610;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:24:\"coin-wallet-600x600.webp\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:31888;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:24:\"coin-wallet-640x640.webp\";s:5:\"width\";i:640;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:35248;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:25:\"coin-wallet-1185x640.webp\";s:5:\"width\";i:1185;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:54186;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(791,2517,'_wp_page_template','elementor_header_footer'),
(792,2517,'_elementor_edit_mode','builder'),
(793,2517,'_elementor_template_type','wp-page'),
(794,2517,'_elementor_version','3.1.4'),
(795,2517,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/04\\/home_bg.png\",\"id\":2036},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0247\",\"right\":\"0\",\"bottom\":\"0247\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#C6CDD7\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#C6CDD700\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":80,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"614ecbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Welcome to Calcue!<br>Best dedicated to serve you!\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"You run your business. We\\u2019ll do your bookkeeping.\",\"header_size\":\"h1\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e231f5b\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"5123d6e\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ebd6bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You are welcome<\\/p>\",\"align\":\"center\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial freedom could be just one phonecall away\\u2026\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"041\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf3453a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A balanced approach to developing a strategy and an effective system for managing, attracting and placing capital is a key success factor. Our team is ready to analyze existing processes, develop a management system that will reduce costs and increase the efficiency of your work.<\\/p>\",\"align\":\"center\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e5343d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Quality working\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/hand.svg\",\"id\":1021},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A team of professionals, driven by a single goal - to bring maximum benefit to the client.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"a9661b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3d2156\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Expert consultants\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/users.svg\",\"id\":1022},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_color\":\"#2E2C39\",\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"db19418\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Only experienced specialists. Our mission is to continuously improve the efficiency of the customer\'s business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(796,2517,'_elementor_page_assets','a:0:{}'),
(797,2518,'_wp_page_template','elementor_header_footer'),
(798,2518,'_elementor_edit_mode','builder'),
(799,2518,'_elementor_template_type','wp-page'),
(800,2518,'_elementor_version','3.1.4'),
(801,2518,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/04\\/home_bg.png\",\"id\":2036},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0247\",\"right\":\"0\",\"bottom\":\"0247\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#C6CDD7\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#C6CDD700\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":80,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"614ecbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Welcome to Calcue!<br>Best dedicated to serve you!\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"You run your business. We\\u2019ll do your bookkeeping.\",\"header_size\":\"h1\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e231f5b\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"5123d6e\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ebd6bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You are welcome<\\/p>\",\"align\":\"center\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial freedom could be just one phonecall away\\u2026\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"041\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf3453a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A balanced approach to developing a strategy and an effective system for managing, attracting and placing capital is a key success factor. Our team is ready to analyze existing processes, develop a management system that will reduce costs and increase the efficiency of your work.<\\/p>\",\"align\":\"center\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e5343d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Quality working\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/hand.svg\",\"id\":1021},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A team of professionals, driven by a single goal - to bring maximum benefit to the client.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"a9661b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3d2156\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Expert consultants\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/users.svg\",\"id\":1022},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_color\":\"#2E2C39\",\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"db19418\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Only experienced specialists. Our mission is to continuously improve the efficiency of the customer\'s business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https://ld-wp73.template-help.com/wordpress/prod_30762/v1/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(802,2518,'_elementor_page_assets','a:0:{}'),
(803,2519,'_wp_page_template','elementor_header_footer'),
(804,2519,'_elementor_edit_mode','builder'),
(805,2519,'_elementor_template_type','wp-page'),
(806,2519,'_elementor_version','3.1.4'),
(807,2519,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#1B1E22\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#C6CDD700\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"300+ cryptocurrencies available\",\"_id\":\"7ae7090\"},{\"text\":\"Withdraw euro directly to your bank account\",\"_id\":\"3303d9c\"},{\"text\":\"Only 0.5% \\u2013 the lowest fee on the market\",\"_id\":\"c6f5e96\"},{\"text\":\"Personal account manager & 24\\/7 support\",\"_id\":\"0e2a738\"}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"300+ cryptocurrencies available\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"947051b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"Withdraw euro directly to your bank account\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4a456fe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"Only 0.5% \\u2013 the lowest fee on the market\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8cd34be\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"Personal account manager & 24\\/7 support\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e231f5b\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Accept Crypto\",\"button_label_hover\":\"Accept Crypto\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"normal_label_typography_font_weight\":\"700\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_label_typography_font_weight\":\"700\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_custom_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":368.812},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"5123d6e\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"normal_label_typography_font_weight\":\"700\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_label_typography_font_weight\":\"700\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_custom_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":395.688},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ebd6bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You are welcome<\\/p>\",\"align\":\"center\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial freedom could be just one phonecall away\\u2026\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"041\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf3453a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A balanced approach to developing a strategy and an effective system for managing, attracting and placing capital is a key success factor. Our team is ready to analyze existing processes, develop a management system that will reduce costs and increase the efficiency of your work.<\\/p>\",\"align\":\"center\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e5343d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Quality working\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/hand.svg\",\"id\":1021},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A team of professionals, driven by a single goal - to bring maximum benefit to the client.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"a9661b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3d2156\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Expert consultants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/users.svg\",\"id\":1022},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_color\":\"#2E2C39\",\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"db19418\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Only experienced specialists. Our mission is to continuously improve the efficiency of the customer\'s business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(808,2519,'_elementor_page_assets','a:0:{}'),
(809,50,'_elementor_pro_version','3.21.3'),
(812,2520,'_wp_page_template','elementor_header_footer'),
(813,2520,'_elementor_edit_mode','builder'),
(814,2520,'_elementor_template_type','wp-page'),
(815,2520,'_elementor_version','3.21.8'),
(816,2520,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#1B1E22\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#C6CDD700\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"300+ cryptocurrencies available\",\"_id\":\"7ae7090\"},{\"text\":\"Withdraw euro directly to your bank account\",\"_id\":\"3303d9c\"},{\"text\":\"Only 0.5% \\u2013 the lowest fee on the market\",\"_id\":\"c6f5e96\"},{\"text\":\"Personal account manager & 24\\/7 support\",\"_id\":\"0e2a738\"}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"300+ cryptocurrencies available\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"947051b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"Withdraw euro directly to your bank account\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4a456fe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"Only 0.5% \\u2013 the lowest fee on the market\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8cd34be\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"Personal account manager & 24\\/7 support\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e231f5b\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Accept Crypto\",\"button_label_hover\":\"Accept Crypto\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"normal_label_typography_font_weight\":\"700\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_label_typography_font_weight\":\"700\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_custom_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":368.812},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"5123d6e\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"normal_label_typography_font_weight\":\"700\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_label_typography_font_weight\":\"700\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_custom_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":395.688},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ebd6bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You are welcome<\\/p>\",\"align\":\"center\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial freedom could be just one phonecall away\\u2026\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"041\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf3453a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A balanced approach to developing a strategy and an effective system for managing, attracting and placing capital is a key success factor. Our team is ready to analyze existing processes, develop a management system that will reduce costs and increase the efficiency of your work.<\\/p>\",\"align\":\"center\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e5343d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Quality working\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/hand.svg\",\"id\":1021},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A team of professionals, driven by a single goal - to bring maximum benefit to the client.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"a9661b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3d2156\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Expert consultants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/users.svg\",\"id\":1022},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_color\":\"#2E2C39\",\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"db19418\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Only experienced specialists. Our mission is to continuously improve the efficiency of the customer\'s business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(817,2520,'_elementor_page_assets','a:0:{}'),
(818,2520,'_elementor_pro_version','3.21.3'),
(820,2521,'_wp_page_template','elementor_header_footer'),
(821,2521,'_elementor_edit_mode','builder'),
(822,2521,'_elementor_template_type','wp-page'),
(823,2521,'_elementor_version','3.21.8'),
(824,2521,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#1B1E22\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#C6CDD700\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"300+ cryptocurrencies available\",\"_id\":\"7ae7090\"},{\"text\":\"Withdraw euro directly to your bank account\",\"_id\":\"3303d9c\"},{\"text\":\"Only 0.5% \\u2013 the lowest fee on the market\",\"_id\":\"c6f5e96\"},{\"text\":\"Personal account manager & 24\\/7 support\",\"_id\":\"0e2a738\"}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"300+ cryptocurrencies available\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"947051b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"Withdraw euro directly to your bank account\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4a456fe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"Only 0.5% \\u2013 the lowest fee on the market\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8cd34be\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"Personal account manager & 24\\/7 support\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e231f5b\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Accept Crypto\",\"button_label_hover\":\"Accept Crypto\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"normal_label_typography_font_weight\":\"700\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_label_typography_font_weight\":\"700\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_custom_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":368.812},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"5123d6e\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"normal_label_typography_font_weight\":\"700\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_label_typography_font_weight\":\"700\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_custom_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":395.688},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ebd6bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You are welcome<\\/p>\",\"align\":\"center\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial freedom could be just one phonecall away\\u2026\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"041\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf3453a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A balanced approach to developing a strategy and an effective system for managing, attracting and placing capital is a key success factor. Our team is ready to analyze existing processes, develop a management system that will reduce costs and increase the efficiency of your work.<\\/p>\",\"align\":\"center\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e5343d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Quality working\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/hand.svg\",\"id\":1021},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A team of professionals, driven by a single goal - to bring maximum benefit to the client.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"a9661b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3d2156\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Expert consultants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/users.svg\",\"id\":1022},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_color\":\"#2E2C39\",\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"db19418\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Only experienced specialists. Our mission is to continuously improve the efficiency of the customer\'s business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(825,2521,'_elementor_page_assets','a:0:{}'),
(826,2521,'_elementor_pro_version','3.21.3'),
(828,2522,'_wp_page_template','elementor_header_footer'),
(829,2522,'_elementor_edit_mode','builder'),
(830,2522,'_elementor_template_type','wp-page'),
(831,2522,'_elementor_version','3.21.8');
INSERT INTO `wp_postmeta` VALUES
(832,2522,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#1B1E22\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#C6CDD700\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"300+ cryptocurrencies available\",\"_id\":\"7ae7090\"},{\"text\":\"Withdraw euro directly to your bank account\",\"_id\":\"3303d9c\"},{\"text\":\"Only 0.5% \\u2013 the lowest fee on the market\",\"_id\":\"c6f5e96\"},{\"text\":\"Personal account manager & 24\\/7 support\",\"_id\":\"0e2a738\"}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"300+ cryptocurrencies available\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"947051b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"Withdraw euro directly to your bank account\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4a456fe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"Only 0.5% \\u2013 the lowest fee on the market\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8cd34be\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"Personal account manager & 24\\/7 support\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e231f5b\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Accept Crypto\",\"button_label_hover\":\"Accept Crypto\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"normal_label_typography_font_weight\":\"700\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_label_typography_font_weight\":\"700\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"#\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_custom_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":368.812},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"5123d6e\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"normal_label_typography_font_weight\":\"700\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_label_typography_font_weight\":\"700\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_custom_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":395.688},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ebd6bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You are welcome<\\/p>\",\"align\":\"center\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial freedom could be just one phonecall away\\u2026\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"041\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf3453a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A balanced approach to developing a strategy and an effective system for managing, attracting and placing capital is a key success factor. Our team is ready to analyze existing processes, develop a management system that will reduce costs and increase the efficiency of your work.<\\/p>\",\"align\":\"center\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e5343d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Quality working\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/hand.svg\",\"id\":1021},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A team of professionals, driven by a single goal - to bring maximum benefit to the client.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"a9661b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3d2156\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Expert consultants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/users.svg\",\"id\":1022},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_color\":\"#2E2C39\",\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"db19418\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Only experienced specialists. Our mission is to continuously improve the efficiency of the customer\'s business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(833,2522,'_elementor_page_assets','a:0:{}'),
(834,2522,'_elementor_pro_version','3.21.3'),
(840,1636,'_elementor_page_assets','a:0:{}'),
(844,2523,'_wp_attached_file','2021/03/BTPayments.png'),
(845,2523,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:147;s:6:\"height\";i:20;s:4:\"file\";s:22:\"2021/03/BTPayments.png\";s:8:\"filesize\";i:3037;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:{}}}'),
(846,2524,'_elementor_template_type','jet_header'),
(847,2524,'_elementor_page_settings','a:2:{s:14:\"jet_conditions\";a:0:{}s:14:\"conditions_top\";s:6:\"entire\";}'),
(848,2524,'_elementor_edit_mode','builder'),
(849,2524,'_elementor_version','3.1.4'),
(850,2524,'_wp_page_template','default'),
(851,2524,'_elementor_data','[{\"id\":\"3dae27a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"1c03896\"}],\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"z_index\":4},\"elements\":[{\"id\":\"042a60b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.5,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":19,\"align_tablet\":\"flex-start\",\"align_mobile\":\"space-between\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"eaf35fa\",\"elType\":\"widget\",\"settings\":{\"logo_image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2021\\/03\\/BTPayments.png\",\"id\":2523,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"auto\",\"logo_alignment_tablet\":\"flex-end\",\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"auto\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_logo_typography_typography\":\"custom\",\"text_logo_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_logo_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"jet-logo\"}],\"isInner\":false},{\"id\":\"b1a5c6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":46.016,\"content_position\":\"center\",\"_inline_size_tablet\":55,\"align_tablet\":\"center\",\"align_mobile\":\"flex-end\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"dfab610\",\"elType\":\"widget\",\"settings\":{\"menu\":\"8\",\"_element_width\":\"auto\",\"menu_container_border_border\":\"solid\",\"menu_container_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"01\",\"isLinked\":false},\"menu_container_border_color\":\"#2E2C39\",\"menu_container_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"03\",\"isLinked\":false},\"top_item_typography_typography\":\"custom\",\"top_item_typography_font_family\":\"Inter\",\"top_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"top_item_typography_font_weight\":\"400\",\"top_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"top_item_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"top_item_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"016\",\"bottom\":\"7\",\"left\":\"016\",\"isLinked\":false},\"top_level_badge_order\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"top_level_arrow_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"top_level_arrow_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"05\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"018\",\"isLinked\":false},\"top_item_text_color_hover\":\"#ABABB0\",\"top_item_text_color_active\":\"#ABABB0\",\"simple_sub_panel_width\":{\"unit\":\"px\",\"size\":190,\"sizes\":[]},\"simple_sub_panel_box_shadow_box_shadow_type\":\"yes\",\"simple_sub_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.06)\"},\"simple_sub_panel_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"simple_sub_panel_padding\":{\"unit\":\"px\",\"top\":\"014\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"simple_sub_panel_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"sub_menu_item_typography_typography\":\"custom\",\"sub_menu_item_typography_font_family\":\"Inter\",\"sub_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_menu_item_typography_font_weight\":\"400\",\"sub_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"sub_menu_item_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_item_text_color\":\"#2E2C39\",\"sub_item_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"021\",\"isLinked\":false},\"sub_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_item_text_color_hover\":\"#509BF6\",\"sub_item_text_color_active\":\"#509BF6\",\"mobile_menu\":\"2\",\"container-position\":\"left\",\"menu_container_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"toggle_icon_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"container_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"auto\",\"item_label_color\":\"#2E2C39\",\"item_label_color_hover\":\"#509BF6\",\"item_label_color_active\":\"#509BF6\",\"top_item_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-mega-menu\"}],\"isInner\":false},{\"id\":\"7d8cc62\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.148,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_tablet\":26,\"align_tablet\":\"flex-end\",\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_order_mobile\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"06bd654\",\"elType\":\"widget\",\"settings\":{\"selected_button_icon_normal\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"button_label_normal\":\"+1(505) 555-0125\",\"selected_button_icon_hover\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"button_label_hover\":\"+1(505) 555-0125\",\"button_url\":{\"url\":\"tel:+1(505)555-0125\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"normal_icon_color\":\"#509BF6\",\"normal_icon_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"normal_icon_box_width\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"normal_icon_box_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"normal_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_icon_color\":\"#509BF6\",\"hover_icon_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_icon_box_width\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_icon_box_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"normal_label_typography_font_weight\":\"500\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_weight\":\"500\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_alignment_mobile\":\"center\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"5bc44a4\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#2E2C39\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false}]'),
(852,2524,'_elementor_page_assets','a:0:{}'),
(854,1653,'_elementor_pro_version','3.21.3'),
(857,2526,'_elementor_edit_mode','builder'),
(858,2526,'_elementor_template_type','kit'),
(860,2512,'_wp_page_template','default'),
(861,2512,'_elementor_page_settings','a:11:{s:9:\"site_name\";s:10:\"BTPayments\";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:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:0:{}s:36:\"typography_enable_styleguide_preview\";s:3:\"yes\";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:9:\"Open Sans\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Open Sans\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{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:9:\"Open Sans\";s:22:\"typography_font_weight\";s:3:\"400\";}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:9:\"Open Sans\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),
(864,2527,'_wp_page_template','elementor_header_footer'),
(865,2527,'_elementor_edit_mode','builder'),
(866,2527,'_elementor_template_type','wp-page'),
(867,2527,'_elementor_version','3.21.8'),
(868,2527,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#1B1E22\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#C6CDD700\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"300+ cryptocurrencies available\",\"_id\":\"7ae7090\"},{\"text\":\"Withdraw euro directly to your bank account\",\"_id\":\"3303d9c\"},{\"text\":\"Only 0.5% \\u2013 the lowest fee on the market\",\"_id\":\"c6f5e96\"},{\"text\":\"Personal account manager & 24\\/7 support\",\"_id\":\"0e2a738\"}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"300+ cryptocurrencies available\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"947051b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"Withdraw euro directly to your bank account\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4a456fe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"Only 0.5% \\u2013 the lowest fee on the market\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8cd34be\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"Personal account manager & 24\\/7 support\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e231f5b\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Accept Crypto\",\"button_label_hover\":\"Accept Crypto\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"normal_label_typography_font_weight\":\"700\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_label_typography_font_weight\":\"700\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"#\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_custom_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":368.812},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"5123d6e\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"normal_label_typography_font_weight\":\"700\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_label_typography_font_weight\":\"700\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_custom_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":395.688},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ebd6bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You are welcome<\\/p>\",\"align\":\"center\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial freedom could be just one phonecall away\\u2026\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"041\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf3453a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A balanced approach to developing a strategy and an effective system for managing, attracting and placing capital is a key success factor. Our team is ready to analyze existing processes, develop a management system that will reduce costs and increase the efficiency of your work.<\\/p>\",\"align\":\"center\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e5343d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Quality working\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/hand.svg\",\"id\":1021},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A team of professionals, driven by a single goal - to bring maximum benefit to the client.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"a9661b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3d2156\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Expert consultants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/users.svg\",\"id\":1022},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_color\":\"#2E2C39\",\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"db19418\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Only experienced specialists. Our mission is to continuously improve the efficiency of the customer\'s business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(869,2527,'_elementor_page_assets','a:0:{}'),
(870,2527,'_elementor_pro_version','3.21.3'),
(872,2528,'_wp_page_template','elementor_header_footer'),
(873,2528,'_elementor_edit_mode','builder'),
(874,2528,'_elementor_template_type','wp-page'),
(875,2528,'_elementor_version','3.21.8'),
(876,2528,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#1B1E22\",\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#C6CDD700\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"300+ cryptocurrencies available\",\"_id\":\"7ae7090\"},{\"text\":\"Withdraw euro directly to your bank account\",\"_id\":\"3303d9c\"},{\"text\":\"Only 0.5% \\u2013 the lowest fee on the market\",\"_id\":\"c6f5e96\"},{\"text\":\"Personal account manager & 24\\/7 support\",\"_id\":\"0e2a738\"}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"300+ cryptocurrencies available\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"947051b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"Withdraw euro directly to your bank account\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4a456fe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"Only 0.5% \\u2013 the lowest fee on the market\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8cd34be\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"Personal account manager & 24\\/7 support\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e231f5b\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Accept Crypto\",\"button_label_hover\":\"Accept Crypto\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"normal_label_typography_font_weight\":\"700\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_label_typography_font_weight\":\"700\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"#\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_custom_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":368.812},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"5123d6e\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"normal_label_typography_font_weight\":\"700\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_label_typography_font_weight\":\"700\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_custom_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":395.688},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ebd6bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You are welcome<\\/p>\",\"align\":\"center\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial freedom could be just one phonecall away\\u2026\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"041\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf3453a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A balanced approach to developing a strategy and an effective system for managing, attracting and placing capital is a key success factor. Our team is ready to analyze existing processes, develop a management system that will reduce costs and increase the efficiency of your work.<\\/p>\",\"align\":\"center\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e5343d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Quality working\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/hand.svg\",\"id\":1021},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A team of professionals, driven by a single goal - to bring maximum benefit to the client.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"a9661b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3d2156\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Expert consultants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/users.svg\",\"id\":1022},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_color\":\"#2E2C39\",\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"db19418\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Only experienced specialists. Our mission is to continuously improve the efficiency of the customer\'s business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(877,2528,'_elementor_page_assets','a:0:{}'),
(878,2528,'_elementor_pro_version','3.21.3'),
(880,2529,'_wp_page_template','elementor_header_footer'),
(881,2529,'_elementor_edit_mode','builder'),
(882,2529,'_elementor_template_type','wp-page'),
(883,2529,'_elementor_version','3.21.8'),
(884,2529,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"300+ cryptocurrencies available\",\"_id\":\"7ae7090\"},{\"text\":\"Withdraw euro directly to your bank account\",\"_id\":\"3303d9c\"},{\"text\":\"Only 0.5% \\u2013 the lowest fee on the market\",\"_id\":\"c6f5e96\"},{\"text\":\"Personal account manager & 24\\/7 support\",\"_id\":\"0e2a738\"}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"300+ cryptocurrencies available\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"947051b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"Withdraw euro directly to your bank account\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4a456fe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"Only 0.5% \\u2013 the lowest fee on the market\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8cd34be\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"Personal account manager & 24\\/7 support\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e231f5b\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Accept Crypto\",\"button_label_hover\":\"Accept Crypto\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"normal_label_typography_font_weight\":\"700\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_label_typography_font_weight\":\"700\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"#\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_custom_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":368.812},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"5123d6e\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"normal_label_typography_font_weight\":\"700\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_label_typography_font_weight\":\"700\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_custom_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":395.688},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ebd6bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You are welcome<\\/p>\",\"align\":\"center\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial freedom could be just one phonecall away\\u2026\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"041\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf3453a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A balanced approach to developing a strategy and an effective system for managing, attracting and placing capital is a key success factor. Our team is ready to analyze existing processes, develop a management system that will reduce costs and increase the efficiency of your work.<\\/p>\",\"align\":\"center\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e5343d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Quality working\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/hand.svg\",\"id\":1021},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A team of professionals, driven by a single goal - to bring maximum benefit to the client.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"a9661b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3d2156\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Expert consultants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/users.svg\",\"id\":1022},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_color\":\"#2E2C39\",\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"db19418\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Only experienced specialists. Our mission is to continuously improve the efficiency of the customer\'s business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(885,2529,'_elementor_page_assets','a:0:{}'),
(886,2529,'_elementor_pro_version','3.21.3'),
(890,2530,'_wp_page_template','elementor_header_footer'),
(891,2530,'_elementor_edit_mode','builder'),
(892,2530,'_elementor_template_type','wp-page'),
(893,2530,'_elementor_version','3.21.8'),
(894,2530,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"300+ cryptocurrencies available\",\"_id\":\"7ae7090\"},{\"text\":\"Withdraw euro directly to your bank account\",\"_id\":\"3303d9c\"},{\"text\":\"Only 0.5% \\u2013 the lowest fee on the market\",\"_id\":\"c6f5e96\"},{\"text\":\"Personal account manager & 24\\/7 support\",\"_id\":\"0e2a738\"}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"300+ cryptocurrencies available\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"947051b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"Withdraw euro directly to your bank account\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4a456fe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"Only 0.5% \\u2013 the lowest fee on the market\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8cd34be\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"Personal account manager & 24\\/7 support\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e231f5b\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Accept Crypto\",\"button_label_hover\":\"Accept Crypto\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"normal_label_typography_font_weight\":\"700\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_label_typography_font_weight\":\"700\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"#\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_custom_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":368.812},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"5123d6e\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"normal_label_typography_font_weight\":\"700\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_label_typography_font_weight\":\"700\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_custom_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":395.688},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ebd6bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You are welcome<\\/p>\",\"align\":\"center\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial freedom could be just one phonecall away\\u2026\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"041\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf3453a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A balanced approach to developing a strategy and an effective system for managing, attracting and placing capital is a key success factor. Our team is ready to analyze existing processes, develop a management system that will reduce costs and increase the efficiency of your work.<\\/p>\",\"align\":\"center\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e5343d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Quality working\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/hand.svg\",\"id\":1021},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A team of professionals, driven by a single goal - to bring maximum benefit to the client.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"a9661b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3d2156\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Expert consultants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/users.svg\",\"id\":1022},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_color\":\"#2E2C39\",\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"db19418\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Only experienced specialists. Our mission is to continuously improve the efficiency of the customer\'s business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(895,2530,'_elementor_page_assets','a:0:{}'),
(896,2530,'_elementor_pro_version','3.21.3'),
(898,2531,'_wp_page_template','elementor_header_footer'),
(899,2531,'_elementor_edit_mode','builder'),
(900,2531,'_elementor_template_type','wp-page'),
(901,2531,'_elementor_version','3.21.8'),
(902,2531,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"300+ cryptocurrencies available\",\"_id\":\"7ae7090\"},{\"text\":\"Withdraw euro directly to your bank account\",\"_id\":\"3303d9c\"},{\"text\":\"Only 0.5% \\u2013 the lowest fee on the market\",\"_id\":\"c6f5e96\"},{\"text\":\"Personal account manager & 24\\/7 support\",\"_id\":\"0e2a738\"}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"300+ cryptocurrencies available\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"947051b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"Withdraw euro directly to your bank account\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4a456fe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"Only 0.5% \\u2013 the lowest fee on the market\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8cd34be\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"title_text\":\"Personal account manager & 24\\/7 support\",\"description_text\":\"\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e231f5b\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Accept Crypto\",\"button_label_hover\":\"Accept Crypto\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"normal_label_typography_font_weight\":\"700\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_label_typography_font_weight\":\"700\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"#\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_custom_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":368.812},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"5123d6e\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"normal_label_typography_font_weight\":\"700\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_label_typography_font_weight\":\"700\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_custom_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":395.688},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ebd6bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You are welcome<\\/p>\",\"align\":\"center\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial freedom could be just one phonecall away\\u2026\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"041\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf3453a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A balanced approach to developing a strategy and an effective system for managing, attracting and placing capital is a key success factor. Our team is ready to analyze existing processes, develop a management system that will reduce costs and increase the efficiency of your work.<\\/p>\",\"align\":\"center\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e5343d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Quality working\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/hand.svg\",\"id\":1021},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A team of professionals, driven by a single goal - to bring maximum benefit to the client.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"a9661b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3d2156\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Expert consultants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/users.svg\",\"id\":1022},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_color\":\"#2E2C39\",\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"db19418\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Only experienced specialists. Our mission is to continuously improve the efficiency of the customer\'s business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(903,2531,'_elementor_page_assets','a:0:{}'),
(904,2531,'_elementor_pro_version','3.21.3'),
(906,2532,'_wp_page_template','elementor_header_footer'),
(907,2532,'_elementor_edit_mode','builder'),
(908,2532,'_elementor_template_type','wp-page'),
(909,2532,'_elementor_version','3.21.8'),
(910,2532,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e231f5b\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Accept Crypto\",\"button_label_hover\":\"Accept Crypto\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"normal_label_typography_font_weight\":\"700\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_label_typography_font_weight\":\"700\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"#\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_custom_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":368.812},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"5123d6e\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"normal_label_typography_font_weight\":\"700\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_label_typography_font_weight\":\"700\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_custom_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":395.688},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ebd6bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You are welcome<\\/p>\",\"align\":\"center\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial freedom could be just one phonecall away\\u2026\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"041\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf3453a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A balanced approach to developing a strategy and an effective system for managing, attracting and placing capital is a key success factor. Our team is ready to analyze existing processes, develop a management system that will reduce costs and increase the efficiency of your work.<\\/p>\",\"align\":\"center\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e5343d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Quality working\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/hand.svg\",\"id\":1021},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A team of professionals, driven by a single goal - to bring maximum benefit to the client.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"a9661b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3d2156\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Expert consultants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/users.svg\",\"id\":1022},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_color\":\"#2E2C39\",\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"db19418\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Only experienced specialists. Our mission is to continuously improve the efficiency of the customer\'s business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(911,2532,'_elementor_page_assets','a:0:{}'),
(912,2532,'_elementor_pro_version','3.21.3'),
(925,2534,'_wp_page_template','elementor_header_footer'),
(926,2534,'_elementor_edit_mode','builder'),
(927,2534,'_elementor_template_type','wp-page'),
(928,2534,'_elementor_version','3.21.8'),
(929,2534,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e231f5b\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Accept Crypto\",\"button_label_hover\":\"Accept Crypto\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"normal_label_typography_font_weight\":\"700\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_label_typography_font_weight\":\"700\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"#\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_custom_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":368.812},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"5123d6e\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"normal_label_typography_font_weight\":\"700\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_label_typography_font_weight\":\"700\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_custom_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":395.688},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ebd6bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You are welcome<\\/p>\",\"align\":\"center\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial freedom could be just one phonecall away\\u2026\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"041\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf3453a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A balanced approach to developing a strategy and an effective system for managing, attracting and placing capital is a key success factor. Our team is ready to analyze existing processes, develop a management system that will reduce costs and increase the efficiency of your work.<\\/p>\",\"align\":\"center\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e5343d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Quality working\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/hand.svg\",\"id\":1021},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A team of professionals, driven by a single goal - to bring maximum benefit to the client.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"a9661b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3d2156\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Expert consultants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/users.svg\",\"id\":1022},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_color\":\"#2E2C39\",\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"db19418\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Only experienced specialists. Our mission is to continuously improve the efficiency of the customer\'s business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(930,2534,'_elementor_page_assets','a:0:{}'),
(931,2534,'_elementor_pro_version','3.21.3'),
(932,2535,'_wp_page_template','elementor_header_footer'),
(933,2535,'_elementor_edit_mode','builder'),
(934,2535,'_elementor_template_type','wp-page'),
(935,2535,'_elementor_version','3.21.8'),
(936,2535,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"e231f5b\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Accept Crypto\",\"button_label_hover\":\"Accept Crypto\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"normal_label_typography_font_weight\":\"700\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_label_typography_font_weight\":\"700\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"#\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_custom_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":368.812},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"5123d6e\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"normal_label_typography_font_weight\":\"700\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_label_typography_font_weight\":\"700\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_custom_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"normal_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"hover_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":395.688},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ebd6bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You are welcome<\\/p>\",\"align\":\"center\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial freedom could be just one phonecall away\\u2026\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"041\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf3453a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A balanced approach to developing a strategy and an effective system for managing, attracting and placing capital is a key success factor. Our team is ready to analyze existing processes, develop a management system that will reduce costs and increase the efficiency of your work.<\\/p>\",\"align\":\"center\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e5343d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Quality working\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/hand.svg\",\"id\":1021},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A team of professionals, driven by a single goal - to bring maximum benefit to the client.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"a9661b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3d2156\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Expert consultants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/users.svg\",\"id\":1022},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_color\":\"#2E2C39\",\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"db19418\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Only experienced specialists. Our mission is to continuously improve the efficiency of the customer\'s business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(937,2535,'_elementor_page_assets','a:0:{}'),
(938,2535,'_elementor_pro_version','3.21.3'),
(939,2536,'_wp_page_template','elementor_header_footer'),
(940,2536,'_elementor_edit_mode','builder'),
(941,2536,'_elementor_template_type','wp-page'),
(942,2536,'_elementor_version','3.21.8');
INSERT INTO `wp_postmeta` VALUES
(943,2536,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ebd6bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You are welcome<\\/p>\",\"align\":\"center\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial freedom could be just one phonecall away\\u2026\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"041\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf3453a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A balanced approach to developing a strategy and an effective system for managing, attracting and placing capital is a key success factor. Our team is ready to analyze existing processes, develop a management system that will reduce costs and increase the efficiency of your work.<\\/p>\",\"align\":\"center\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e5343d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Quality working\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/hand.svg\",\"id\":1021},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A team of professionals, driven by a single goal - to bring maximum benefit to the client.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"a9661b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3d2156\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Expert consultants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/users.svg\",\"id\":1022},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_color\":\"#2E2C39\",\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"db19418\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Only experienced specialists. Our mission is to continuously improve the efficiency of the customer\'s business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(944,2536,'_elementor_page_assets','a:0:{}'),
(945,2536,'_elementor_pro_version','3.21.3'),
(948,2537,'_elementor_template_type','jet_header'),
(949,2537,'_elementor_page_settings','a:2:{s:14:\"jet_conditions\";a:0:{}s:14:\"conditions_top\";s:6:\"entire\";}'),
(950,2537,'_elementor_edit_mode','builder'),
(951,2537,'_elementor_version','3.21.8'),
(952,2537,'_wp_page_template','default'),
(953,2537,'_elementor_data','[{\"id\":\"3dae27a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"1c03896\"}],\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"z_index\":4,\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"042a60b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":12.5,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":19,\"align_tablet\":\"flex-start\",\"align_mobile\":\"space-between\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"eaf35fa\",\"elType\":\"widget\",\"settings\":{\"logo_image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2021\\/03\\/BTPayments.png\",\"id\":2523,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"auto\",\"logo_alignment_tablet\":\"flex-end\",\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"auto\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_logo_typography_typography\":\"custom\",\"text_logo_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_logo_typography_font_weight\":\"700\",\"text_logo_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"jet-logo\"}],\"isInner\":false},{\"id\":\"b1a5c6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":46.016,\"content_position\":\"center\",\"_inline_size_tablet\":55,\"align_tablet\":\"center\",\"align_mobile\":\"flex-end\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"dfab610\",\"elType\":\"widget\",\"settings\":{\"menu\":\"8\",\"_element_width\":\"auto\",\"menu_container_border_border\":\"solid\",\"menu_container_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"01\",\"isLinked\":false},\"menu_container_border_color\":\"#2E2C39\",\"menu_container_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"03\",\"isLinked\":false},\"top_item_typography_typography\":\"custom\",\"top_item_typography_font_family\":\"Inter\",\"top_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"top_item_typography_font_weight\":\"400\",\"top_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"top_item_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"top_item_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"016\",\"bottom\":\"7\",\"left\":\"016\",\"isLinked\":false},\"top_level_badge_order\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"top_level_arrow_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"top_level_arrow_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"05\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"018\",\"isLinked\":false},\"top_item_text_color_hover\":\"#ABABB0\",\"top_item_text_color_active\":\"#ABABB0\",\"simple_sub_panel_width\":{\"unit\":\"px\",\"size\":190,\"sizes\":[]},\"simple_sub_panel_box_shadow_box_shadow_type\":\"yes\",\"simple_sub_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.06)\"},\"simple_sub_panel_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"simple_sub_panel_padding\":{\"unit\":\"px\",\"top\":\"014\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"simple_sub_panel_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"sub_menu_item_typography_typography\":\"custom\",\"sub_menu_item_typography_font_family\":\"Inter\",\"sub_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_menu_item_typography_font_weight\":\"400\",\"sub_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"sub_menu_item_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_item_text_color\":\"#2E2C39\",\"sub_item_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"021\",\"isLinked\":false},\"sub_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_item_text_color_hover\":\"#509BF6\",\"sub_item_text_color_active\":\"#509BF6\",\"mobile_menu\":\"2\",\"container-position\":\"left\",\"menu_container_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"toggle_icon_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"container_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"auto\",\"item_label_color\":\"#2E2C39\",\"item_label_color_hover\":\"#509BF6\",\"item_label_color_active\":\"#509BF6\",\"top_item_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"top_item_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"jet-mega-menu\"}],\"isInner\":false},{\"id\":\"7d8cc62\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.148,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_tablet\":26,\"align_tablet\":\"flex-end\",\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_order_mobile\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"5bc44a4\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false}]'),
(954,2537,'_elementor_page_assets','a:0:{}'),
(955,2537,'_elementor_pro_version','3.21.3'),
(962,58,'_elementor_page_assets','a:0:{}'),
(963,2538,'_elementor_template_type','jet_header'),
(964,2538,'_elementor_page_settings','a:2:{s:14:\"jet_conditions\";a:0:{}s:14:\"conditions_top\";s:6:\"entire\";}'),
(965,2538,'_elementor_edit_mode','builder'),
(966,2538,'_elementor_version','3.21.8'),
(967,2538,'_wp_page_template','default'),
(968,2538,'_elementor_data','[{\"id\":\"3dae27a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"1c03896\"}],\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"z_index\":4,\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"042a60b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":13,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":19,\"align_tablet\":\"flex-start\",\"align_mobile\":\"space-between\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"eaf35fa\",\"elType\":\"widget\",\"settings\":{\"logo_image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2021\\/03\\/BTPayments.png\",\"id\":2523,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"auto\",\"logo_alignment_tablet\":\"flex-end\",\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"auto\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_logo_typography_typography\":\"custom\",\"text_logo_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_logo_typography_font_weight\":\"700\",\"text_logo_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"jet-logo\"}],\"isInner\":false},{\"id\":\"b1a5c6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":66.664,\"content_position\":\"center\",\"_inline_size_tablet\":55,\"align_tablet\":\"center\",\"align_mobile\":\"flex-end\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"dfab610\",\"elType\":\"widget\",\"settings\":{\"menu\":\"8\",\"_element_width\":\"inherit\",\"menu_container_border_border\":\"solid\",\"menu_container_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"01\",\"isLinked\":false},\"menu_container_border_color\":\"#2E2C39\",\"menu_container_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"03\",\"isLinked\":false},\"top_item_typography_typography\":\"custom\",\"top_item_typography_font_family\":\"Inter\",\"top_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"top_item_typography_font_weight\":\"400\",\"top_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"top_item_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"top_item_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"016\",\"bottom\":\"7\",\"left\":\"016\",\"isLinked\":false},\"top_level_badge_order\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"top_level_arrow_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"top_level_arrow_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"05\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"018\",\"isLinked\":false},\"top_item_text_color_hover\":\"#ABABB0\",\"top_item_text_color_active\":\"#ABABB0\",\"simple_sub_panel_width\":{\"unit\":\"px\",\"size\":190,\"sizes\":[]},\"simple_sub_panel_box_shadow_box_shadow_type\":\"yes\",\"simple_sub_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.06)\"},\"simple_sub_panel_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"simple_sub_panel_padding\":{\"unit\":\"px\",\"top\":\"014\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"simple_sub_panel_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"sub_menu_item_typography_typography\":\"custom\",\"sub_menu_item_typography_font_family\":\"Inter\",\"sub_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_menu_item_typography_font_weight\":\"400\",\"sub_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"sub_menu_item_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_item_text_color\":\"#2E2C39\",\"sub_item_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"021\",\"isLinked\":false},\"sub_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_item_text_color_hover\":\"#509BF6\",\"sub_item_text_color_active\":\"#509BF6\",\"mobile_menu\":\"2\",\"container-position\":\"left\",\"menu_container_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"toggle_icon_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"container_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"item_label_color\":\"#2E2C39\",\"item_label_color_hover\":\"#509BF6\",\"item_label_color_active\":\"#509BF6\",\"top_item_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"menu_container_alignment\":\"flex-start\",\"top_item_text_color\":\"#FFFFFF\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.308},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":377.891},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-mega-menu\"}],\"isInner\":false},{\"id\":\"7d8cc62\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_tablet\":26,\"align_tablet\":\"flex-end\",\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_order_mobile\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"5bc44a4\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false}]'),
(969,2538,'_elementor_page_assets','a:0:{}'),
(970,2538,'_elementor_pro_version','3.21.3'),
(974,2539,'_elementor_template_type','jet_header'),
(975,2539,'_elementor_page_settings','a:2:{s:14:\"jet_conditions\";a:0:{}s:14:\"conditions_top\";s:6:\"entire\";}'),
(976,2539,'_elementor_edit_mode','builder'),
(977,2539,'_elementor_version','3.21.8'),
(978,2539,'_wp_page_template','default'),
(979,2539,'_elementor_data','[{\"id\":\"3dae27a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"1c03896\"}],\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"z_index\":4,\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"042a60b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":13,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":19,\"align_tablet\":\"flex-start\",\"align_mobile\":\"space-between\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"eaf35fa\",\"elType\":\"widget\",\"settings\":{\"logo_image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2021\\/03\\/BTPayments.png\",\"id\":2523,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"auto\",\"logo_alignment_tablet\":\"flex-end\",\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"auto\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_logo_typography_typography\":\"custom\",\"text_logo_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_logo_typography_font_weight\":\"700\",\"text_logo_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"jet-logo\"}],\"isInner\":false},{\"id\":\"b1a5c6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":66.664,\"content_position\":\"center\",\"_inline_size_tablet\":55,\"align_tablet\":\"center\",\"align_mobile\":\"flex-end\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"dfab610\",\"elType\":\"widget\",\"settings\":{\"menu\":\"8\",\"_element_width\":\"inherit\",\"menu_container_border_border\":\"solid\",\"menu_container_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"01\",\"isLinked\":false},\"menu_container_border_color\":\"#2E2C39\",\"menu_container_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"03\",\"isLinked\":false},\"top_item_typography_typography\":\"custom\",\"top_item_typography_font_family\":\"Inter\",\"top_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"top_item_typography_font_weight\":\"400\",\"top_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"top_item_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"top_item_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"016\",\"bottom\":\"7\",\"left\":\"016\",\"isLinked\":false},\"top_level_badge_order\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"top_level_arrow_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"top_level_arrow_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"05\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"018\",\"isLinked\":false},\"top_item_text_color_hover\":\"#ABABB0\",\"top_item_text_color_active\":\"#ABABB0\",\"simple_sub_panel_width\":{\"unit\":\"px\",\"size\":190,\"sizes\":[]},\"simple_sub_panel_box_shadow_box_shadow_type\":\"yes\",\"simple_sub_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.06)\"},\"simple_sub_panel_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"simple_sub_panel_padding\":{\"unit\":\"px\",\"top\":\"014\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"simple_sub_panel_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"sub_menu_item_typography_typography\":\"custom\",\"sub_menu_item_typography_font_family\":\"Inter\",\"sub_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_menu_item_typography_font_weight\":\"400\",\"sub_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"sub_menu_item_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_item_text_color\":\"#2E2C39\",\"sub_item_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"021\",\"isLinked\":false},\"sub_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_item_text_color_hover\":\"#509BF6\",\"sub_item_text_color_active\":\"#509BF6\",\"mobile_menu\":\"8\",\"container-position\":\"left\",\"menu_container_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"toggle_icon_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"container_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"item_label_color\":\"#2E2C39\",\"item_label_color_hover\":\"#509BF6\",\"item_label_color_active\":\"#509BF6\",\"top_item_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"menu_container_alignment\":\"flex-start\",\"top_item_text_color\":\"#FFFFFF\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.308},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":377.891},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-mega-menu\"}],\"isInner\":false},{\"id\":\"7d8cc62\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_tablet\":26,\"align_tablet\":\"flex-end\",\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_order_mobile\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"5bc44a4\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false}]'),
(980,2539,'_elementor_page_assets','a:0:{}'),
(981,2539,'_elementor_pro_version','3.21.3'),
(985,2540,'_elementor_template_type','jet_header'),
(986,2540,'_elementor_page_settings','a:2:{s:14:\"jet_conditions\";a:0:{}s:14:\"conditions_top\";s:6:\"entire\";}'),
(987,2540,'_elementor_edit_mode','builder'),
(988,2540,'_elementor_version','3.21.8'),
(989,2540,'_wp_page_template','default'),
(990,2540,'_elementor_data','[{\"id\":\"3dae27a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"1c03896\"}],\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"z_index\":4,\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"042a60b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":13,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":19,\"align_tablet\":\"flex-start\",\"align_mobile\":\"space-between\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"eaf35fa\",\"elType\":\"widget\",\"settings\":{\"logo_image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2021\\/03\\/BTPayments.png\",\"id\":2523,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"auto\",\"logo_alignment_tablet\":\"flex-end\",\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"auto\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_logo_typography_typography\":\"custom\",\"text_logo_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_logo_typography_font_weight\":\"700\",\"text_logo_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"jet-logo\"}],\"isInner\":false},{\"id\":\"b1a5c6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":66.664,\"content_position\":\"center\",\"_inline_size_tablet\":55,\"align_tablet\":\"center\",\"align_mobile\":\"flex-end\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"dfab610\",\"elType\":\"widget\",\"settings\":{\"menu\":\"8\",\"_element_width\":\"inherit\",\"menu_container_border_border\":\"solid\",\"menu_container_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"01\",\"isLinked\":false},\"menu_container_border_color\":\"#2E2C39\",\"menu_container_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"03\",\"isLinked\":false},\"top_item_typography_typography\":\"custom\",\"top_item_typography_font_family\":\"Inter\",\"top_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"top_item_typography_font_weight\":\"400\",\"top_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"top_item_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"top_item_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"016\",\"bottom\":\"7\",\"left\":\"016\",\"isLinked\":false},\"top_level_badge_order\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"top_level_arrow_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"top_level_arrow_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"05\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"018\",\"isLinked\":false},\"top_item_text_color_hover\":\"#ABABB0\",\"top_item_text_color_active\":\"#ABABB0\",\"simple_sub_panel_width\":{\"unit\":\"px\",\"size\":190,\"sizes\":[]},\"simple_sub_panel_box_shadow_box_shadow_type\":\"yes\",\"simple_sub_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.06)\"},\"simple_sub_panel_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"simple_sub_panel_padding\":{\"unit\":\"px\",\"top\":\"014\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"simple_sub_panel_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"sub_menu_item_typography_typography\":\"custom\",\"sub_menu_item_typography_font_family\":\"Inter\",\"sub_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_menu_item_typography_font_weight\":\"400\",\"sub_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"sub_menu_item_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_item_text_color\":\"#2E2C39\",\"sub_item_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"021\",\"isLinked\":false},\"sub_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_item_text_color_hover\":\"#509BF6\",\"sub_item_text_color_active\":\"#509BF6\",\"mobile_menu\":\"8\",\"container-position\":\"left\",\"menu_container_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"toggle_icon_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"container_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"item_label_color\":\"#2E2C39\",\"item_label_color_hover\":\"#509BF6\",\"item_label_color_active\":\"#509BF6\",\"top_item_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"menu_container_alignment\":\"flex-start\",\"top_item_text_color\":\"#FFFFFF\",\"mobile_toggle_color\":\"#FFFFFF\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.308},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":377.891},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-mega-menu\"}],\"isInner\":false},{\"id\":\"7d8cc62\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_tablet\":26,\"align_tablet\":\"flex-end\",\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_order_mobile\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"5bc44a4\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false}]'),
(991,2540,'_elementor_page_assets','a:0:{}'),
(992,2540,'_elementor_pro_version','3.21.3'),
(996,2541,'_elementor_template_type','jet_header'),
(997,2541,'_elementor_page_settings','a:2:{s:14:\"jet_conditions\";a:0:{}s:14:\"conditions_top\";s:6:\"entire\";}'),
(998,2541,'_elementor_edit_mode','builder'),
(999,2541,'_elementor_version','3.21.8'),
(1000,2541,'_wp_page_template','default'),
(1001,2541,'_elementor_data','[{\"id\":\"3dae27a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"1c03896\"}],\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"z_index\":4,\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"042a60b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":13,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":19,\"align_tablet\":\"flex-start\",\"align_mobile\":\"space-between\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"eaf35fa\",\"elType\":\"widget\",\"settings\":{\"logo_image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2021\\/03\\/BTPayments.png\",\"id\":2523,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"auto\",\"logo_alignment_tablet\":\"flex-end\",\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"auto\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_logo_typography_typography\":\"custom\",\"text_logo_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_logo_typography_font_weight\":\"700\",\"text_logo_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"jet-logo\"}],\"isInner\":false},{\"id\":\"b1a5c6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":66.664,\"content_position\":\"center\",\"_inline_size_tablet\":55,\"align_tablet\":\"center\",\"align_mobile\":\"flex-end\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"dfab610\",\"elType\":\"widget\",\"settings\":{\"menu\":\"8\",\"_element_width\":\"inherit\",\"menu_container_border_border\":\"solid\",\"menu_container_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"01\",\"isLinked\":false},\"menu_container_border_color\":\"#2E2C39\",\"menu_container_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"03\",\"isLinked\":false},\"top_item_typography_typography\":\"custom\",\"top_item_typography_font_family\":\"Inter\",\"top_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"top_item_typography_font_weight\":\"400\",\"top_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"top_item_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"top_item_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"016\",\"bottom\":\"7\",\"left\":\"016\",\"isLinked\":false},\"top_level_badge_order\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"top_level_arrow_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"top_level_arrow_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"05\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"018\",\"isLinked\":false},\"top_item_text_color_hover\":\"#ABABB0\",\"top_item_text_color_active\":\"#ABABB0\",\"simple_sub_panel_width\":{\"unit\":\"px\",\"size\":190,\"sizes\":[]},\"simple_sub_panel_box_shadow_box_shadow_type\":\"yes\",\"simple_sub_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.06)\"},\"simple_sub_panel_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"simple_sub_panel_padding\":{\"unit\":\"px\",\"top\":\"014\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"simple_sub_panel_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"sub_menu_item_typography_typography\":\"custom\",\"sub_menu_item_typography_font_family\":\"Inter\",\"sub_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_menu_item_typography_font_weight\":\"400\",\"sub_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"sub_menu_item_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_item_text_color\":\"#2E2C39\",\"sub_item_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"021\",\"isLinked\":false},\"sub_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_item_text_color_hover\":\"#509BF6\",\"sub_item_text_color_active\":\"#509BF6\",\"mobile_menu\":\"8\",\"container-position\":\"left\",\"menu_container_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"toggle_icon_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"container_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"item_label_color\":\"#2E2C39\",\"item_label_color_hover\":\"#509BF6\",\"item_label_color_active\":\"#509BF6\",\"top_item_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"menu_container_alignment\":\"flex-start\",\"top_item_text_color\":\"#FFFFFF\",\"mobile_toggle_color\":\"#FFFFFF\",\"menu_item_icon_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.308},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":377.891},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-mega-menu\"}],\"isInner\":false},{\"id\":\"7d8cc62\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_tablet\":26,\"align_tablet\":\"flex-end\",\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_order_mobile\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"5bc44a4\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false}]'),
(1002,2541,'_elementor_page_assets','a:0:{}'),
(1003,2541,'_elementor_pro_version','3.21.3'),
(1007,2542,'_elementor_template_type','jet_header'),
(1008,2542,'_elementor_page_settings','a:2:{s:14:\"jet_conditions\";a:0:{}s:14:\"conditions_top\";s:6:\"entire\";}'),
(1009,2542,'_elementor_edit_mode','builder'),
(1010,2542,'_elementor_version','3.21.8'),
(1011,2542,'_wp_page_template','default'),
(1012,2542,'_elementor_data','[{\"id\":\"3dae27a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"1c03896\"}],\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"z_index\":4,\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"042a60b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":13,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":19,\"align_tablet\":\"flex-start\",\"align_mobile\":\"space-between\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"eaf35fa\",\"elType\":\"widget\",\"settings\":{\"logo_image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2021\\/03\\/BTPayments.png\",\"id\":2523,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"auto\",\"logo_alignment_tablet\":\"flex-end\",\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"auto\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_logo_typography_typography\":\"custom\",\"text_logo_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_logo_typography_font_weight\":\"700\",\"text_logo_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"jet-logo\"}],\"isInner\":false},{\"id\":\"b1a5c6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":66.664,\"content_position\":\"center\",\"_inline_size_tablet\":55,\"align_tablet\":\"center\",\"align_mobile\":\"flex-end\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"dfab610\",\"elType\":\"widget\",\"settings\":{\"menu\":\"8\",\"_element_width\":\"inherit\",\"menu_container_border_border\":\"solid\",\"menu_container_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"01\",\"isLinked\":false},\"menu_container_border_color\":\"#2E2C39\",\"menu_container_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"03\",\"isLinked\":false},\"top_item_typography_typography\":\"custom\",\"top_item_typography_font_family\":\"Inter\",\"top_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"top_item_typography_font_weight\":\"400\",\"top_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"top_item_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"top_item_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"016\",\"bottom\":\"7\",\"left\":\"016\",\"isLinked\":false},\"top_level_badge_order\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"top_level_arrow_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"top_level_arrow_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"05\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"018\",\"isLinked\":false},\"top_item_text_color_hover\":\"#ABABB0\",\"top_item_text_color_active\":\"#ABABB0\",\"simple_sub_panel_width\":{\"unit\":\"px\",\"size\":190,\"sizes\":[]},\"simple_sub_panel_box_shadow_box_shadow_type\":\"yes\",\"simple_sub_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.06)\"},\"simple_sub_panel_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"simple_sub_panel_padding\":{\"unit\":\"px\",\"top\":\"014\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"simple_sub_panel_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"sub_menu_item_typography_typography\":\"custom\",\"sub_menu_item_typography_font_family\":\"Inter\",\"sub_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_menu_item_typography_font_weight\":\"400\",\"sub_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"sub_menu_item_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_item_text_color\":\"#2E2C39\",\"sub_item_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"021\",\"isLinked\":false},\"sub_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_item_text_color_hover\":\"#509BF6\",\"sub_item_text_color_active\":\"#509BF6\",\"mobile_menu\":\"8\",\"container-position\":\"left\",\"menu_container_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"toggle_icon_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"container_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"item_label_color\":\"#2E2C39\",\"item_label_color_hover\":\"#509BF6\",\"item_label_color_active\":\"#509BF6\",\"top_item_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"menu_container_alignment\":\"flex-start\",\"top_item_text_color\":\"#FFFFFF\",\"mobile_toggle_color\":\"#FFFFFF\",\"breadcrums_icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_item_icon_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"menu_item_dropdown_icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.308},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":377.891},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"jet-mega-menu\"}],\"isInner\":false},{\"id\":\"7d8cc62\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_tablet\":26,\"align_tablet\":\"flex-end\",\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_order_mobile\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"5bc44a4\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false}]'),
(1013,2542,'_elementor_page_assets','a:0:{}'),
(1014,2542,'_elementor_pro_version','3.21.3'),
(1018,2543,'_elementor_template_type','jet_header'),
(1019,2543,'_elementor_page_settings','a:2:{s:14:\"jet_conditions\";a:0:{}s:14:\"conditions_top\";s:6:\"entire\";}'),
(1020,2543,'_elementor_edit_mode','builder'),
(1021,2543,'_elementor_version','3.21.8'),
(1022,2543,'_wp_page_template','default'),
(1023,2543,'_elementor_data','[{\"id\":\"3dae27a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"1c03896\"}],\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"z_index\":4,\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"042a60b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":13,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":19,\"align_tablet\":\"flex-start\",\"align_mobile\":\"space-between\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"eaf35fa\",\"elType\":\"widget\",\"settings\":{\"logo_image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2021\\/03\\/BTPayments.png\",\"id\":2523,\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"auto\",\"logo_alignment_tablet\":\"flex-end\",\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"auto\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_logo_typography_typography\":\"custom\",\"text_logo_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_logo_typography_font_weight\":\"700\",\"text_logo_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"jet-logo\"}],\"isInner\":false},{\"id\":\"b1a5c6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":66.664,\"content_position\":\"center\",\"_inline_size_tablet\":55,\"align_tablet\":\"center\",\"align_mobile\":\"flex-end\",\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"dfab610\",\"elType\":\"widget\",\"settings\":{\"menu\":\"8\",\"_element_width\":\"inherit\",\"menu_container_border_border\":\"solid\",\"menu_container_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"01\",\"isLinked\":false},\"menu_container_border_color\":\"#2E2C39\",\"menu_container_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"03\",\"isLinked\":false},\"top_item_typography_typography\":\"custom\",\"top_item_typography_font_family\":\"Inter\",\"top_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"top_item_typography_font_weight\":\"400\",\"top_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"top_item_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"top_item_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"016\",\"bottom\":\"7\",\"left\":\"016\",\"isLinked\":false},\"top_level_badge_order\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"top_level_arrow_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"top_level_arrow_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"05\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"018\",\"isLinked\":false},\"top_item_text_color_hover\":\"#ABABB0\",\"top_item_text_color_active\":\"#ABABB0\",\"simple_sub_panel_width\":{\"unit\":\"px\",\"size\":190,\"sizes\":[]},\"simple_sub_panel_box_shadow_box_shadow_type\":\"yes\",\"simple_sub_panel_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.06)\"},\"simple_sub_panel_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"simple_sub_panel_padding\":{\"unit\":\"px\",\"top\":\"014\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"simple_sub_panel_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-4\",\"isLinked\":false},\"sub_menu_item_typography_typography\":\"custom\",\"sub_menu_item_typography_font_family\":\"Inter\",\"sub_menu_item_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_menu_item_typography_font_weight\":\"400\",\"sub_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":1.9,\"sizes\":[]},\"sub_menu_item_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_item_text_color\":\"#2E2C39\",\"sub_item_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"021\",\"isLinked\":false},\"sub_item_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_item_text_color_hover\":\"#509BF6\",\"sub_item_text_color_active\":\"#509BF6\",\"mobile_menu\":\"8\",\"container-position\":\"left\",\"menu_container_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"toggle_icon_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"container_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"inherit\",\"item_label_color\":\"#2E2C39\",\"item_label_color_hover\":\"#509BF6\",\"item_label_color_active\":\"#509BF6\",\"top_item_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"menu_container_alignment\":\"flex-start\",\"top_item_text_color\":\"#FFFFFF\",\"mobile_toggle_color\":\"#FFFFFF\",\"breadcrums_text_typography_typography\":\"custom\",\"breadcrums_icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_item_icon_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"menu_item_dropdown_icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.308},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":377.891},\"_flex_size\":\"none\",\"custom_css\":\".jet-mobile-menu__controls svg {\\n width: 12px;\\n height: 12px;\\n}\"},\"elements\":[],\"widgetType\":\"jet-mega-menu\"}],\"isInner\":false},{\"id\":\"7d8cc62\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"flex-end\",\"_inline_size_tablet\":26,\"align_tablet\":\"flex-end\",\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_order_mobile\":1,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"5bc44a4\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false}]'),
(1024,2543,'_elementor_page_assets','a:0:{}'),
(1025,2543,'_elementor_pro_version','3.21.3'),
(1038,2545,'_wp_page_template','elementor_header_footer'),
(1039,2545,'_elementor_edit_mode','builder'),
(1040,2545,'_elementor_template_type','wp-page'),
(1041,2545,'_elementor_version','3.21.8'),
(1042,2545,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ebd6bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You are welcome<\\/p>\",\"align\":\"center\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial freedom could be just one phonecall away\\u2026\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"041\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf3453a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A balanced approach to developing a strategy and an effective system for managing, attracting and placing capital is a key success factor. Our team is ready to analyze existing processes, develop a management system that will reduce costs and increase the efficiency of your work.<\\/p>\",\"align\":\"center\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e5343d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Quality working\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/hand.svg\",\"id\":1021},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A team of professionals, driven by a single goal - to bring maximum benefit to the client.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"a9661b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3d2156\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Expert consultants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/users.svg\",\"id\":1022},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_color\":\"#2E2C39\",\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"db19418\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Only experienced specialists. Our mission is to continuously improve the efficiency of the customer\'s business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1043,2545,'_elementor_page_assets','a:0:{}'),
(1044,2545,'_elementor_pro_version','3.21.3'),
(1045,2546,'_wp_page_template','elementor_header_footer'),
(1046,2546,'_elementor_edit_mode','builder'),
(1047,2546,'_elementor_template_type','wp-page'),
(1048,2546,'_elementor_version','3.21.8'),
(1049,2546,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ebd6bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>You are welcome<\\/p>\",\"align\":\"center\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial freedom could be just one phonecall away\\u2026\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"041\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf3453a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A balanced approach to developing a strategy and an effective system for managing, attracting and placing capital is a key success factor. Our team is ready to analyze existing processes, develop a management system that will reduce costs and increase the efficiency of your work.<\\/p>\",\"align\":\"center\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e5343d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Quality working\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/hand.svg\",\"id\":1021},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A team of professionals, driven by a single goal - to bring maximum benefit to the client.<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"a9661b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c3d2156\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Expert consultants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/users.svg\",\"id\":1022},\"library\":\"svg\"},\"_id\":\"87c823c\"}],\"icon_color\":\"#2E2C39\",\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"db19418\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Only experienced specialists. Our mission is to continuously improve the efficiency of the customer\'s business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1050,2546,'_elementor_page_assets','a:0:{}'),
(1051,2546,'_elementor_pro_version','3.21.3'),
(1052,2547,'_wp_page_template','elementor_header_footer'),
(1053,2547,'_elementor_edit_mode','builder'),
(1054,2547,'_elementor_template_type','wp-page'),
(1055,2547,'_elementor_version','3.21.8'),
(1056,2547,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1057,2547,'_elementor_page_assets','a:0:{}'),
(1058,2547,'_elementor_pro_version','3.21.3'),
(1061,2548,'_wp_page_template','elementor_header_footer'),
(1062,2548,'_elementor_edit_mode','builder'),
(1063,2548,'_elementor_template_type','wp-page'),
(1064,2548,'_elementor_version','3.21.8'),
(1065,2548,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1066,2548,'_elementor_page_assets','a:0:{}'),
(1067,2548,'_elementor_pro_version','3.21.3'),
(1069,2549,'_wp_page_template','elementor_header_footer'),
(1070,2549,'_elementor_edit_mode','builder'),
(1071,2549,'_elementor_template_type','wp-page'),
(1072,2549,'_elementor_version','3.21.8'),
(1073,2549,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1074,2549,'_elementor_page_assets','a:0:{}'),
(1075,2549,'_elementor_pro_version','3.21.3'),
(1077,2550,'_wp_page_template','elementor_header_footer'),
(1078,2550,'_elementor_edit_mode','builder'),
(1079,2550,'_elementor_template_type','wp-page'),
(1080,2550,'_elementor_version','3.21.8'),
(1081,2550,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1082,2550,'_elementor_page_assets','a:0:{}'),
(1083,2550,'_elementor_pro_version','3.21.3'),
(1087,2551,'_wp_page_template','elementor_header_footer'),
(1088,2551,'_elementor_edit_mode','builder'),
(1089,2551,'_elementor_template_type','wp-page'),
(1090,2551,'_elementor_version','3.21.8'),
(1091,2551,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1092,2551,'_elementor_page_assets','a:0:{}'),
(1093,2551,'_elementor_pro_version','3.21.3'),
(1095,2552,'_wp_page_template','elementor_header_footer'),
(1096,2552,'_elementor_edit_mode','builder'),
(1097,2552,'_elementor_template_type','wp-page'),
(1098,2552,'_elementor_version','3.21.8');
INSERT INTO `wp_postmeta` VALUES
(1099,2552,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1100,2552,'_elementor_page_assets','a:0:{}'),
(1101,2552,'_elementor_pro_version','3.21.3'),
(1103,2553,'_wp_page_template','elementor_header_footer'),
(1104,2553,'_elementor_edit_mode','builder'),
(1105,2553,'_elementor_template_type','wp-page'),
(1106,2553,'_elementor_version','3.21.8'),
(1107,2553,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1108,2553,'_elementor_page_assets','a:0:{}'),
(1109,2553,'_elementor_pro_version','3.21.3'),
(1112,2554,'_wp_page_template','elementor_header_footer'),
(1113,2554,'_elementor_edit_mode','builder'),
(1114,2554,'_elementor_template_type','wp-page'),
(1115,2554,'_elementor_version','3.21.8'),
(1116,2554,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1117,2554,'_elementor_page_assets','a:0:{}'),
(1118,2554,'_elementor_pro_version','3.21.3'),
(1119,2555,'_wp_page_template','elementor_header_footer'),
(1120,2555,'_elementor_edit_mode','builder'),
(1121,2555,'_elementor_template_type','wp-page'),
(1122,2555,'_elementor_version','3.21.8'),
(1123,2555,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1124,2555,'_elementor_page_assets','a:0:{}'),
(1125,2555,'_elementor_pro_version','3.21.3'),
(1126,2556,'_wp_page_template','elementor_header_footer'),
(1127,2556,'_elementor_edit_mode','builder'),
(1128,2556,'_elementor_template_type','wp-page'),
(1129,2556,'_elementor_version','3.21.8'),
(1130,2556,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1131,2556,'_elementor_page_assets','a:0:{}'),
(1132,2556,'_elementor_pro_version','3.21.3'),
(1135,2557,'_wp_attached_file','2024/06/c1.png'),
(1136,2557,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:134;s:6:\"height\";i:40;s:4:\"file\";s:14:\"2024/06/c1.png\";s:8:\"filesize\";i:3263;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:{}}}'),
(1137,2558,'_wp_attached_file','2024/06/c2.png'),
(1138,2558,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:134;s:6:\"height\";i:40;s:4:\"file\";s:14:\"2024/06/c2.png\";s:8:\"filesize\";i:3823;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:{}}}'),
(1139,2559,'_wp_attached_file','2024/06/c3.png'),
(1140,2559,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:134;s:6:\"height\";i:40;s:4:\"file\";s:14:\"2024/06/c3.png\";s:8:\"filesize\";i:4114;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:{}}}'),
(1141,2560,'_wp_attached_file','2024/06/c4.png'),
(1142,2560,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:134;s:6:\"height\";i:40;s:4:\"file\";s:14:\"2024/06/c4.png\";s:8:\"filesize\";i:3642;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:{}}}'),
(1143,2561,'_wp_attached_file','2024/06/c5.png'),
(1144,2561,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:134;s:6:\"height\";i:40;s:4:\"file\";s:14:\"2024/06/c5.png\";s:8:\"filesize\";i:5996;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:{}}}'),
(1145,2562,'_wp_attached_file','2024/06/c6.png'),
(1146,2562,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:134;s:6:\"height\";i:40;s:4:\"file\";s:14:\"2024/06/c6.png\";s:8:\"filesize\";i:4229;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:{}}}'),
(1147,2563,'_wp_attached_file','2024/06/c7.png'),
(1148,2563,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:134;s:6:\"height\";i:40;s:4:\"file\";s:14:\"2024/06/c7.png\";s:8:\"filesize\";i:3416;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:{}}}'),
(1149,2564,'_wp_attached_file','2024/06/c8.png'),
(1150,2564,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:134;s:6:\"height\";i:40;s:4:\"file\";s:14:\"2024/06/c8.png\";s:8:\"filesize\";i:4142;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:{}}}'),
(1160,2566,'_wp_attached_file','2024/06/567.jpg'),
(1161,2566,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:15:\"2024/06/567.jpg\";s:8:\"filesize\";i:117619;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"567-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14842;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"567-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6166;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"567-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51279;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:15:\"567-370x265.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18454;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:14:\"567-150x85.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5021;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:15:\"567-230x230.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10623;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:15:\"567-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21778;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:15:\"567-370x500.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26725;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:15:\"567-570x450.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33340;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:16:\"567-1000x650.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66470;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:15:\"567-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37433;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:15:\"567-640x640.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40707;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:16:\"567-1000x640.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64937;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1162,2567,'_wp_page_template','elementor_header_footer'),
(1163,2567,'_elementor_edit_mode','builder'),
(1164,2567,'_elementor_template_type','wp-page'),
(1165,2567,'_elementor_version','3.21.8'),
(1166,2567,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1167,2567,'_elementor_page_assets','a:0:{}'),
(1168,2567,'_elementor_pro_version','3.21.3'),
(1169,2568,'_wp_page_template','elementor_header_footer'),
(1170,2568,'_elementor_edit_mode','builder'),
(1171,2568,'_elementor_template_type','wp-page'),
(1172,2568,'_elementor_version','3.21.8'),
(1173,2568,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"064\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1296bdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Why choose Us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are the best agency to improve your deals\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The accumulated knowledge, skills and experience make it possible to provide high-class services. Our approach is based on the non-standard solution of tasks with the application of modern international practices.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audience services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Management accounting\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Financial advice\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"98449a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/img_home.png\",\"id\":2038},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":82.15,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1174,2568,'_elementor_page_assets','a:0:{}'),
(1175,2568,'_elementor_pro_version','3.21.3'),
(1176,2569,'_wp_page_template','elementor_header_footer'),
(1177,2569,'_elementor_edit_mode','builder'),
(1178,2569,'_elementor_template_type','wp-page'),
(1179,2569,'_elementor_version','3.21.8'),
(1180,2569,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a0f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/567.jpg\",\"id\":2566,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1181,2569,'_elementor_page_assets','a:0:{}'),
(1182,2569,'_elementor_pro_version','3.21.3'),
(1184,2570,'_wp_page_template','elementor_header_footer'),
(1185,2570,'_elementor_edit_mode','builder'),
(1186,2570,'_elementor_template_type','wp-page'),
(1187,2570,'_elementor_version','3.21.8'),
(1188,2570,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a0f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/567.jpg\",\"id\":2566,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1189,2570,'_elementor_page_assets','a:0:{}'),
(1190,2570,'_elementor_pro_version','3.21.3'),
(1191,2571,'_wp_page_template','elementor_header_footer'),
(1192,2571,'_elementor_edit_mode','builder'),
(1193,2571,'_elementor_template_type','wp-page'),
(1194,2571,'_elementor_version','3.21.8');
INSERT INTO `wp_postmeta` VALUES
(1195,2571,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a0f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/567.jpg\",\"id\":2566,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1196,2571,'_elementor_page_assets','a:0:{}'),
(1197,2571,'_elementor_pro_version','3.21.3'),
(1198,2572,'_wp_page_template','elementor_header_footer'),
(1199,2572,'_elementor_edit_mode','builder'),
(1200,2572,'_elementor_template_type','wp-page'),
(1201,2572,'_elementor_version','3.21.8'),
(1202,2572,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a0f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1203,2572,'_elementor_page_assets','a:0:{}'),
(1204,2572,'_elementor_pro_version','3.21.3'),
(1213,2574,'_wp_attached_file','2024/06/Coins-Dollars.png'),
(1214,2574,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2024/06/Coins-Dollars.png\";s:8:\"filesize\";i:232695;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Coins-Dollars-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45874;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Coins-Dollars-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16004;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"Coins-Dollars-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:203869;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:25:\"Coins-Dollars-370x265.png\";s:5:\"width\";i:370;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49529;}s:12:\"kava-thumb-s\";a:5:{s:4:\"file\";s:24:\"Coins-Dollars-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10625;}s:14:\"kava-thumb-s-2\";a:5:{s:4:\"file\";s:25:\"Coins-Dollars-230x230.png\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30570;}s:12:\"kava-thumb-m\";a:5:{s:4:\"file\";s:25:\"Coins-Dollars-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70430;}s:21:\"kava-thumb-m-vertical\";a:5:{s:4:\"file\";s:25:\"Coins-Dollars-370x500.png\";s:5:\"width\";i:370;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:97993;}s:14:\"kava-thumb-m-2\";a:5:{s:4:\"file\";s:25:\"Coins-Dollars-570x450.png\";s:5:\"width\";i:570;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107047;}s:12:\"kava-thumb-l\";a:5:{s:4:\"file\";s:25:\"Coins-Dollars-800x650.png\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:197395;}s:18:\"kava-thumb-masonry\";a:5:{s:4:\"file\";s:25:\"Coins-Dollars-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:135195;}s:18:\"kava-thumb-justify\";a:5:{s:4:\"file\";s:25:\"Coins-Dollars-640x640.png\";s:5:\"width\";i:640;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:150887;}s:20:\"kava-thumb-justify-2\";a:5:{s:4:\"file\";s:25:\"Coins-Dollars-800x640.png\";s:5:\"width\";i:800;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:194712;}s:24:\"elementor_custom_500x500\";a:4:{s:4:\"file\";s:77:\"elementor/thumbs/Coins-Dollars-qp41a45m3iyvbefo1vkib3gydgsc4h6pwheecapg94.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"elementor_custom_450x450\";a:4:{s:4:\"file\";s:77:\"elementor/thumbs/Coins-Dollars-qp41a45lhlkniecsuf4x921rusoislkuyl3t9lgu8k.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1215,2575,'_wp_page_template','elementor_header_footer'),
(1216,2575,'_elementor_edit_mode','builder'),
(1217,2575,'_elementor_template_type','wp-page'),
(1218,2575,'_elementor_version','3.21.8'),
(1219,2575,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a0f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1220,2575,'_elementor_page_assets','a:0:{}'),
(1221,2575,'_elementor_pro_version','3.21.3'),
(1223,2576,'_wp_page_template','elementor_header_footer'),
(1224,2576,'_elementor_edit_mode','builder'),
(1225,2576,'_elementor_template_type','wp-page'),
(1226,2576,'_elementor_version','3.21.8'),
(1227,2576,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a0f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1228,2576,'_elementor_page_assets','a:0:{}'),
(1229,2576,'_elementor_pro_version','3.21.3'),
(1231,2577,'_wp_page_template','elementor_header_footer'),
(1232,2577,'_elementor_edit_mode','builder'),
(1233,2577,'_elementor_template_type','wp-page'),
(1234,2577,'_elementor_version','3.21.8'),
(1235,2577,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a0f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/Coins-Dollars.png\",\"id\":2574,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1236,2577,'_elementor_page_assets','a:0:{}'),
(1237,2577,'_elementor_pro_version','3.21.3'),
(1241,2578,'_wp_page_template','elementor_header_footer'),
(1242,2578,'_elementor_edit_mode','builder'),
(1243,2578,'_elementor_template_type','wp-page'),
(1244,2578,'_elementor_version','3.21.8'),
(1245,2578,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a0f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/Coins-Dollars.png\",\"id\":2574,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1246,2578,'_elementor_page_assets','a:0:{}'),
(1247,2578,'_elementor_pro_version','3.21.3'),
(1249,2579,'_wp_page_template','elementor_header_footer'),
(1250,2579,'_elementor_edit_mode','builder'),
(1251,2579,'_elementor_template_type','wp-page'),
(1252,2579,'_elementor_version','3.21.8'),
(1253,2579,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a0f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/Coins-Dollars.png\",\"id\":2574,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1254,2579,'_elementor_page_assets','a:0:{}'),
(1255,2579,'_elementor_pro_version','3.21.3'),
(1257,2580,'_wp_page_template','elementor_header_footer'),
(1258,2580,'_elementor_edit_mode','builder'),
(1259,2580,'_elementor_template_type','wp-page'),
(1260,2580,'_elementor_version','3.21.8'),
(1261,2580,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a0f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/Coins-Dollars.png\",\"id\":2574,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"kava-thumb-m\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1262,2580,'_elementor_page_assets','a:0:{}'),
(1263,2580,'_elementor_pro_version','3.21.3'),
(1267,2581,'_wp_page_template','elementor_header_footer'),
(1268,2581,'_elementor_edit_mode','builder'),
(1269,2581,'_elementor_template_type','wp-page'),
(1270,2581,'_elementor_version','3.21.8'),
(1271,2581,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a0f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/Coins-Dollars.png\",\"id\":2574,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"kava-thumb-m\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1272,2581,'_elementor_page_assets','a:0:{}'),
(1273,2581,'_elementor_pro_version','3.21.3'),
(1275,2582,'_wp_page_template','elementor_header_footer'),
(1276,2582,'_elementor_edit_mode','builder'),
(1277,2582,'_elementor_template_type','wp-page'),
(1278,2582,'_elementor_version','3.21.8');
INSERT INTO `wp_postmeta` VALUES
(1279,2582,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a0f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/Coins-Dollars.png\",\"id\":2574,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"kava-thumb-m\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1280,2582,'_elementor_page_assets','a:0:{}'),
(1281,2582,'_elementor_pro_version','3.21.3'),
(1283,2583,'_wp_page_template','elementor_header_footer'),
(1284,2583,'_elementor_edit_mode','builder'),
(1285,2583,'_elementor_template_type','wp-page'),
(1286,2583,'_elementor_version','3.21.8'),
(1287,2583,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a0f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/Coins-Dollars.png\",\"id\":2574,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"450\",\"height\":\"450\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1288,2583,'_elementor_page_assets','a:0:{}'),
(1289,2583,'_elementor_pro_version','3.21.3'),
(1293,2584,'_wp_page_template','elementor_header_footer'),
(1294,2584,'_elementor_edit_mode','builder'),
(1295,2584,'_elementor_template_type','wp-page'),
(1296,2584,'_elementor_version','3.21.8'),
(1297,2584,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a0f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/Coins-Dollars.png\",\"id\":2574,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"450\",\"height\":\"450\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1298,2584,'_elementor_page_assets','a:0:{}'),
(1299,2584,'_elementor_pro_version','3.21.3'),
(1301,2585,'_wp_page_template','elementor_header_footer'),
(1302,2585,'_elementor_edit_mode','builder'),
(1303,2585,'_elementor_template_type','wp-page'),
(1304,2585,'_elementor_version','3.21.8'),
(1305,2585,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a0f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/Coins-Dollars.png\",\"id\":2574,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"450\",\"height\":\"450\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1306,2585,'_elementor_page_assets','a:0:{}'),
(1307,2585,'_elementor_pro_version','3.21.3'),
(1309,2586,'_wp_page_template','elementor_header_footer'),
(1310,2586,'_elementor_edit_mode','builder'),
(1311,2586,'_elementor_template_type','wp-page'),
(1312,2586,'_elementor_version','3.21.8'),
(1313,2586,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a0f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/Coins-Dollars.png\",\"id\":2574,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"kava-thumb-m\",\"image_custom_dimension\":{\"width\":\"450\",\"height\":\"450\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1314,2586,'_elementor_page_assets','a:0:{}'),
(1315,2586,'_elementor_pro_version','3.21.3'),
(1319,2587,'_wp_page_template','elementor_header_footer'),
(1320,2587,'_elementor_edit_mode','builder'),
(1321,2587,'_elementor_template_type','wp-page'),
(1322,2587,'_elementor_version','3.21.8'),
(1323,2587,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a0f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/Coins-Dollars.png\",\"id\":2574,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"kava-thumb-m\",\"image_custom_dimension\":{\"width\":\"450\",\"height\":\"450\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1324,2587,'_elementor_page_assets','a:0:{}'),
(1325,2587,'_elementor_pro_version','3.21.3'),
(1327,2588,'_wp_page_template','elementor_header_footer'),
(1328,2588,'_elementor_edit_mode','builder'),
(1329,2588,'_elementor_template_type','wp-page'),
(1330,2588,'_elementor_version','3.21.8'),
(1331,2588,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a0f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/Coins-Dollars.png\",\"id\":2574,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"kava-thumb-m\",\"image_custom_dimension\":{\"width\":\"450\",\"height\":\"450\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1332,2588,'_elementor_page_assets','a:0:{}'),
(1333,2588,'_elementor_pro_version','3.21.3'),
(1335,2589,'_wp_page_template','elementor_header_footer'),
(1336,2589,'_elementor_edit_mode','builder'),
(1337,2589,'_elementor_template_type','wp-page'),
(1338,2589,'_elementor_version','3.21.8'),
(1339,2589,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a0f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/Coins-Dollars.png\",\"id\":2574,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"kava-thumb-m\",\"image_custom_dimension\":{\"width\":\"450\",\"height\":\"450\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1340,2589,'_elementor_page_assets','a:0:{}'),
(1341,2589,'_elementor_pro_version','3.21.3'),
(1345,2590,'_wp_page_template','elementor_header_footer'),
(1346,2590,'_elementor_edit_mode','builder'),
(1347,2590,'_elementor_template_type','wp-page'),
(1348,2590,'_elementor_version','3.21.8'),
(1349,2590,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a0f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/Coins-Dollars.png\",\"id\":2574,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"kava-thumb-m\",\"image_custom_dimension\":{\"width\":\"450\",\"height\":\"450\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1350,2590,'_elementor_page_assets','a:0:{}'),
(1351,2590,'_elementor_pro_version','3.21.3'),
(1353,2591,'_wp_page_template','elementor_header_footer'),
(1354,2591,'_elementor_edit_mode','builder'),
(1355,2591,'_elementor_template_type','wp-page'),
(1356,2591,'_elementor_version','3.21.8');
INSERT INTO `wp_postmeta` VALUES
(1357,2591,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a0f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/Coins-Dollars.png\",\"id\":2574,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"kava-thumb-m\",\"image_custom_dimension\":{\"width\":\"450\",\"height\":\"450\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1358,2591,'_elementor_page_assets','a:0:{}'),
(1359,2591,'_elementor_pro_version','3.21.3'),
(1361,2592,'_wp_page_template','elementor_header_footer'),
(1362,2592,'_elementor_edit_mode','builder'),
(1363,2592,'_elementor_template_type','wp-page'),
(1364,2592,'_elementor_version','3.21.8'),
(1365,2592,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a0f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/Coins-Dollars.png\",\"id\":2574,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"kava-thumb-m\",\"image_custom_dimension\":{\"width\":\"450\",\"height\":\"450\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1366,2592,'_elementor_page_assets','a:0:{}'),
(1367,2592,'_elementor_pro_version','3.21.3'),
(1371,2593,'_wp_page_template','elementor_header_footer'),
(1372,2593,'_elementor_edit_mode','builder'),
(1373,2593,'_elementor_template_type','wp-page'),
(1374,2593,'_elementor_version','3.21.8'),
(1375,2593,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a0f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/Coins-Dollars.png\",\"id\":2574,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"kava-thumb-m\",\"image_custom_dimension\":{\"width\":\"450\",\"height\":\"450\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1376,2593,'_elementor_page_assets','a:0:{}'),
(1377,2593,'_elementor_pro_version','3.21.3'),
(1379,2594,'_wp_page_template','elementor_header_footer'),
(1380,2594,'_elementor_edit_mode','builder'),
(1381,2594,'_elementor_template_type','wp-page'),
(1382,2594,'_elementor_version','3.21.8'),
(1383,2594,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a0f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/Coins-Dollars.png\",\"id\":2574,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"kava-thumb-m\",\"image_custom_dimension\":{\"width\":\"450\",\"height\":\"450\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1384,2594,'_elementor_page_assets','a:0:{}'),
(1385,2594,'_elementor_pro_version','3.21.3'),
(1387,2595,'_wp_page_template','elementor_header_footer'),
(1388,2595,'_elementor_edit_mode','builder'),
(1389,2595,'_elementor_template_type','wp-page'),
(1390,2595,'_elementor_version','3.21.8'),
(1391,2595,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a0f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/Coins-Dollars.png\",\"id\":2574,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"kava-thumb-m\",\"image_custom_dimension\":{\"width\":\"450\",\"height\":\"450\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1392,2595,'_elementor_page_assets','a:0:{}'),
(1393,2595,'_elementor_pro_version','3.21.3'),
(1397,2596,'_wp_page_template','elementor_header_footer'),
(1398,2596,'_elementor_edit_mode','builder'),
(1399,2596,'_elementor_template_type','wp-page'),
(1400,2596,'_elementor_version','3.21.8'),
(1401,2596,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a0f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/Coins-Dollars.png\",\"id\":2574,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"kava-thumb-m\",\"image_custom_dimension\":{\"width\":\"450\",\"height\":\"450\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1402,2596,'_elementor_page_assets','a:0:{}'),
(1403,2596,'_elementor_pro_version','3.21.3'),
(1405,2597,'_wp_page_template','elementor_header_footer'),
(1406,2597,'_elementor_edit_mode','builder'),
(1407,2597,'_elementor_template_type','wp-page'),
(1408,2597,'_elementor_version','3.21.8'),
(1409,2597,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a0f855\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/Coins-Dollars.png\",\"id\":2574,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"kava-thumb-m\",\"image_custom_dimension\":{\"width\":\"450\",\"height\":\"450\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1410,2597,'_elementor_page_assets','a:0:{}'),
(1411,2597,'_elementor_pro_version','3.21.3'),
(1413,2598,'_wp_page_template','elementor_header_footer'),
(1414,2598,'_elementor_edit_mode','builder'),
(1415,2598,'_elementor_template_type','wp-page'),
(1416,2598,'_elementor_version','3.21.8'),
(1417,2598,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1418,2598,'_elementor_page_assets','a:0:{}'),
(1419,2598,'_elementor_pro_version','3.21.3'),
(1432,2600,'_wp_page_template','elementor_header_footer'),
(1433,2600,'_elementor_edit_mode','builder'),
(1434,2600,'_elementor_template_type','wp-page'),
(1435,2600,'_elementor_version','3.21.8'),
(1436,2600,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1437,2600,'_elementor_page_assets','a:0:{}'),
(1438,2600,'_elementor_pro_version','3.21.3'),
(1439,2601,'_wp_page_template','elementor_header_footer'),
(1440,2601,'_elementor_edit_mode','builder'),
(1441,2601,'_elementor_template_type','wp-page'),
(1442,2601,'_elementor_version','3.21.8');
INSERT INTO `wp_postmeta` VALUES
(1443,2601,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\"},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1444,2601,'_elementor_page_assets','a:0:{}'),
(1445,2601,'_elementor_pro_version','3.21.3'),
(1446,2602,'_wp_page_template','elementor_header_footer'),
(1447,2602,'_elementor_edit_mode','builder'),
(1448,2602,'_elementor_template_type','wp-page'),
(1449,2602,'_elementor_version','3.21.8'),
(1450,2602,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56cb9da\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"jet_parallax_layout_list\":[]},\"elements\":[{\"id\":\"ee62af9\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQs\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c312c4b\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Can BTPayments be settled in USD?\",\"tab_content\":\"<p>Yes, whether you want to use digital currency or USD for settlement, BTPayments will fully support it.<\\/p>\",\"_id\":\"d9b8c18\"},{\"tab_title\":\"Is BTPayments safe?\",\"tab_content\":\"<p>BTPayments is a secure cryptocurrency payment platform, bridging traditional finance and the evolving Web3 world.<\\/p>\",\"_id\":\"39a9dec\"},{\"tab_title\":\"How BTPayments charges?\",\"tab_content\":\"<p>BTPayments charges only a 1% transaction fee on merchant sales and no monthly or annual fees. For example, for a 100 USDT transaction, BTPayments will deduct a handling fee of 1USDT and credit 99 USDT to the payee\'s account.<\\/p>\",\"_id\":\"b6640f5\"},{\"tab_title\":\"For withdrawals, are there any limits or fees?\",\"tab_content\":\"<p>BTPayments does not set withdrawal limits. For cryptocurrency withdrawals, BTPayments charges a gas fee of 2.5 units per transaction, with no amount limit.For fiat withdrawals, BTPayments charges a fee of 0.5%, regardless of the amount, as well as a fixed transfer fee of 25 USD.<\\/p>\",\"_id\":\"e767bd6\"},{\"tab_title\":\"What is settlement period and expected fund arrival time?\",\"tab_content\":\"<p>BTPayments operates on a T+1 settlement cycle. Withdrawals initiated before 5 AM (UTC) on a business day are settled the same day; those after 5 AM (UTC) are settled the next day. Withdrawals on non-business days are processed on the next business day.<\\/p>\",\"_id\":\"44b4d2f\"}],\"border_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1451,2602,'_elementor_page_assets','a:0:{}'),
(1452,2602,'_elementor_pro_version','3.21.3'),
(1455,2603,'_wp_page_template','elementor_header_footer'),
(1456,2603,'_elementor_edit_mode','builder'),
(1457,2603,'_elementor_template_type','wp-page'),
(1458,2603,'_elementor_version','3.21.8'),
(1459,2603,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56cb9da\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"jet_parallax_layout_list\":[]},\"elements\":[{\"id\":\"ee62af9\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQs\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c312c4b\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Can BTPayments be settled in USD?\",\"tab_content\":\"<p>Yes, whether you want to use digital currency or USD for settlement, BTPayments will fully support it.<\\/p>\",\"_id\":\"d9b8c18\"},{\"tab_title\":\"Is BTPayments safe?\",\"tab_content\":\"<p>BTPayments is a secure cryptocurrency payment platform, bridging traditional finance and the evolving Web3 world.<\\/p>\",\"_id\":\"39a9dec\"},{\"tab_title\":\"How BTPayments charges?\",\"tab_content\":\"<p>BTPayments charges only a 1% transaction fee on merchant sales and no monthly or annual fees. For example, for a 100 USDT transaction, BTPayments will deduct a handling fee of 1USDT and credit 99 USDT to the payee\'s account.<\\/p>\",\"_id\":\"b6640f5\"},{\"tab_title\":\"For withdrawals, are there any limits or fees?\",\"tab_content\":\"<p>BTPayments does not set withdrawal limits. For cryptocurrency withdrawals, BTPayments charges a gas fee of 2.5 units per transaction, with no amount limit.For fiat withdrawals, BTPayments charges a fee of 0.5%, regardless of the amount, as well as a fixed transfer fee of 25 USD.<\\/p>\",\"_id\":\"e767bd6\"},{\"tab_title\":\"What is settlement period and expected fund arrival time?\",\"tab_content\":\"<p>BTPayments operates on a T+1 settlement cycle. Withdrawals initiated before 5 AM (UTC) on a business day are settled the same day; those after 5 AM (UTC) are settled the next day. Withdrawals on non-business days are processed on the next business day.<\\/p>\",\"_id\":\"44b4d2f\"}],\"border_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1460,2603,'_elementor_page_assets','a:0:{}'),
(1461,2603,'_elementor_pro_version','3.21.3'),
(1463,2604,'_wp_page_template','elementor_header_footer'),
(1464,2604,'_elementor_edit_mode','builder'),
(1465,2604,'_elementor_template_type','wp-page'),
(1466,2604,'_elementor_version','3.21.8'),
(1467,2604,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56cb9da\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"jet_parallax_layout_list\":[]},\"elements\":[{\"id\":\"ee62af9\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQs\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c312c4b\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Can BTPayments be settled in USD?\",\"tab_content\":\"<p>Yes, whether you want to use digital currency or USD for settlement, BTPayments will fully support it.<\\/p>\",\"_id\":\"d9b8c18\"},{\"tab_title\":\"Is BTPayments safe?\",\"tab_content\":\"<p>BTPayments is a secure cryptocurrency payment platform, bridging traditional finance and the evolving Web3 world.<\\/p>\",\"_id\":\"39a9dec\"},{\"tab_title\":\"How BTPayments charges?\",\"tab_content\":\"<p>BTPayments charges only a 1% transaction fee on merchant sales and no monthly or annual fees. For example, for a 100 USDT transaction, BTPayments will deduct a handling fee of 1USDT and credit 99 USDT to the payee\'s account.<\\/p>\",\"_id\":\"b6640f5\"},{\"tab_title\":\"For withdrawals, are there any limits or fees?\",\"tab_content\":\"<p>BTPayments does not set withdrawal limits. For cryptocurrency withdrawals, BTPayments charges a gas fee of 2.5 units per transaction, with no amount limit.For fiat withdrawals, BTPayments charges a fee of 0.5%, regardless of the amount, as well as a fixed transfer fee of 25 USD.<\\/p>\",\"_id\":\"e767bd6\"},{\"tab_title\":\"What is settlement period and expected fund arrival time?\",\"tab_content\":\"<p>BTPayments operates on a T+1 settlement cycle. Withdrawals initiated before 5 AM (UTC) on a business day are settled the same day; those after 5 AM (UTC) are settled the next day. Withdrawals on non-business days are processed on the next business day.<\\/p>\",\"_id\":\"44b4d2f\"}],\"border_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1468,2604,'_elementor_page_assets','a:0:{}'),
(1469,2604,'_elementor_pro_version','3.21.3'),
(1471,2605,'_wp_page_template','elementor_header_footer'),
(1472,2605,'_elementor_edit_mode','builder'),
(1473,2605,'_elementor_template_type','wp-page'),
(1474,2605,'_elementor_version','3.21.8'),
(1475,2605,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56cb9da\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"jet_parallax_layout_list\":[]},\"elements\":[{\"id\":\"ee62af9\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQs\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c312c4b\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Can BTPayments be settled in USD?\",\"tab_content\":\"<p>Yes, whether you want to use digital currency or USD for settlement, BTPayments will fully support it.<\\/p>\",\"_id\":\"d9b8c18\"},{\"tab_title\":\"Is BTPayments safe?\",\"tab_content\":\"<p>BTPayments is a secure cryptocurrency payment platform, bridging traditional finance and the evolving Web3 world.<\\/p>\",\"_id\":\"39a9dec\"},{\"tab_title\":\"How BTPayments charges?\",\"tab_content\":\"<p>BTPayments charges only a 1% transaction fee on merchant sales and no monthly or annual fees. For example, for a 100 USDT transaction, BTPayments will deduct a handling fee of 1USDT and credit 99 USDT to the payee\'s account.<\\/p>\",\"_id\":\"b6640f5\"},{\"tab_title\":\"For withdrawals, are there any limits or fees?\",\"tab_content\":\"<p>BTPayments does not set withdrawal limits. For cryptocurrency withdrawals, BTPayments charges a gas fee of 2.5 units per transaction, with no amount limit.For fiat withdrawals, BTPayments charges a fee of 0.5%, regardless of the amount, as well as a fixed transfer fee of 25 USD.<\\/p>\",\"_id\":\"e767bd6\"},{\"tab_title\":\"What is settlement period and expected fund arrival time?\",\"tab_content\":\"<p>BTPayments operates on a T+1 settlement cycle. Withdrawals initiated before 5 AM (UTC) on a business day are settled the same day; those after 5 AM (UTC) are settled the next day. Withdrawals on non-business days are processed on the next business day.<\\/p>\",\"_id\":\"44b4d2f\"}],\"border_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_color\":\"#F9F9F9\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1476,2605,'_elementor_page_assets','a:0:{}'),
(1477,2605,'_elementor_pro_version','3.21.3'),
(1481,2606,'_wp_page_template','elementor_header_footer'),
(1482,2606,'_elementor_edit_mode','builder'),
(1483,2606,'_elementor_template_type','wp-page'),
(1484,2606,'_elementor_version','3.21.8'),
(1485,2606,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56cb9da\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"jet_parallax_layout_list\":[]},\"elements\":[{\"id\":\"ee62af9\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQs\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c312c4b\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Can BTPayments be settled in USD?\",\"tab_content\":\"<p>Yes, whether you want to use digital currency or USD for settlement, BTPayments will fully support it.<\\/p>\",\"_id\":\"d9b8c18\"},{\"tab_title\":\"Is BTPayments safe?\",\"tab_content\":\"<p>BTPayments is a secure cryptocurrency payment platform, bridging traditional finance and the evolving Web3 world.<\\/p>\",\"_id\":\"39a9dec\"},{\"tab_title\":\"How BTPayments charges?\",\"tab_content\":\"<p>BTPayments charges only a 1% transaction fee on merchant sales and no monthly or annual fees. For example, for a 100 USDT transaction, BTPayments will deduct a handling fee of 1USDT and credit 99 USDT to the payee\'s account.<\\/p>\",\"_id\":\"b6640f5\"},{\"tab_title\":\"For withdrawals, are there any limits or fees?\",\"tab_content\":\"<p>BTPayments does not set withdrawal limits. For cryptocurrency withdrawals, BTPayments charges a gas fee of 2.5 units per transaction, with no amount limit.For fiat withdrawals, BTPayments charges a fee of 0.5%, regardless of the amount, as well as a fixed transfer fee of 25 USD.<\\/p>\",\"_id\":\"e767bd6\"},{\"tab_title\":\"What is settlement period and expected fund arrival time?\",\"tab_content\":\"<p>BTPayments operates on a T+1 settlement cycle. Withdrawals initiated before 5 AM (UTC) on a business day are settled the same day; those after 5 AM (UTC) are settled the next day. Withdrawals on non-business days are processed on the next business day.<\\/p>\",\"_id\":\"44b4d2f\"}],\"border_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_color\":\"#F9F9F9\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1486,2606,'_elementor_page_assets','a:0:{}'),
(1487,2606,'_elementor_pro_version','3.21.3'),
(1489,2607,'_wp_page_template','elementor_header_footer'),
(1490,2607,'_elementor_edit_mode','builder'),
(1491,2607,'_elementor_template_type','wp-page'),
(1492,2607,'_elementor_version','3.21.8'),
(1493,2607,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56cb9da\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"jet_parallax_layout_list\":[]},\"elements\":[{\"id\":\"ee62af9\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQs\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c312c4b\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Can BTPayments be settled in USD?\",\"tab_content\":\"<p>Yes, whether you want to use digital currency or USD for settlement, BTPayments will fully support it.<\\/p>\",\"_id\":\"d9b8c18\"},{\"tab_title\":\"Is BTPayments safe?\",\"tab_content\":\"<p>BTPayments is a secure cryptocurrency payment platform, bridging traditional finance and the evolving Web3 world.<\\/p>\",\"_id\":\"39a9dec\"},{\"tab_title\":\"How BTPayments charges?\",\"tab_content\":\"<p>BTPayments charges only a 1% transaction fee on merchant sales and no monthly or annual fees. For example, for a 100 USDT transaction, BTPayments will deduct a handling fee of 1USDT and credit 99 USDT to the payee\'s account.<\\/p>\",\"_id\":\"b6640f5\"},{\"tab_title\":\"For withdrawals, are there any limits or fees?\",\"tab_content\":\"<p>BTPayments does not set withdrawal limits. For cryptocurrency withdrawals, BTPayments charges a gas fee of 2.5 units per transaction, with no amount limit.For fiat withdrawals, BTPayments charges a fee of 0.5%, regardless of the amount, as well as a fixed transfer fee of 25 USD.<\\/p>\",\"_id\":\"e767bd6\"},{\"tab_title\":\"What is settlement period and expected fund arrival time?\",\"tab_content\":\"<p>BTPayments operates on a T+1 settlement cycle. Withdrawals initiated before 5 AM (UTC) on a business day are settled the same day; those after 5 AM (UTC) are settled the next day. Withdrawals on non-business days are processed on the next business day.<\\/p>\",\"_id\":\"44b4d2f\"}],\"border_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_color\":\"#F9F9F9\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"549d5d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Business\",\"subtitle\":\"Create and scale your business. Crisis Management\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"49\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$500\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"3d5f3ec\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#FFFFFF\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#FFFFFF\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#FFFFFF\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#FFFFFF\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#FFFFFF\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#FFFFFF\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#FFFFFF\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#FFFFFF\",\"button_color\":\"#2E2C39\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"button_hover_box_shadow_box_shadow_type\":\"yes\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"08\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"27de94c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"6e3c3d3\"},{\"text\":\"Financial analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"92b9773\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e1e8605\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"062\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"c6cd92a\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#2E2C39\",\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"05\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d87af5c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0211ffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a45526f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>latest news<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12fe1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Read our latest articles tips & news\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cec504f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lectus diam, massa vulputate tellus fames senectus.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"026\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ca5098\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7460ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b0cbe23\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"626b4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d62d500\",\"elType\":\"widget\",\"settings\":{\"featured_excerpt_trimmed_ending\":\"...\",\"featured_read_more_text\":\"Read More\",\"excerpt_trimmed_ending\":\"...\",\"read_more_text\":\"Read More\",\"all_btn_label\":\"All\",\"title_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"6197eda\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"content_related_meta\":[{\"meta_label\":\"Label\",\"_id\":\"cad03ef\",\"meta_format\":\"%s\",\"date_format\":\"F j, Y\"}],\"title_tag\":\"h3\",\"featured_post\":\"\",\"posts_columns\":\"3\",\"posts_rows\":\"1\",\"image_size\":\"full\",\"image_position\":\"top\",\"excerpt_length\":35,\"meta_position\":\"after-excerpt\",\"show_author\":\"yes\",\"selected_show_author_icon\":{\"value\":\"\",\"library\":\"\"},\"selected_show_date_icon\":{\"value\":\"\",\"library\":\"\"},\"post_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"post_content_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_color\":\"#2E2C39\",\"post_title_color_hover\":\"#509BF6\",\"post_title_typography_typography\":\"custom\",\"post_title_typography_font_family\":\"Inter\",\"post_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"post_title_typography_font_weight\":\"600\",\"post_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"post_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"024\",\"left\":\"0\",\"isLinked\":false},\"post_text_color\":\"#2E2C39\",\"post_text_typography_typography\":\"custom\",\"post_text_typography_font_family\":\"Inter\",\"post_text_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_text_typography_font_weight\":\"300\",\"post_text_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"post_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"post_text_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"043\",\"left\":\"0\",\"isLinked\":false},\"meta_color\":\"#181818\",\"meta_link_color\":\"#181818\",\"meta_link_color_hover\":\"#509BF6\",\"meta_typography_typography\":\"custom\",\"meta_typography_font_family\":\"Inter\",\"meta_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"meta_typography_font_weight\":\"300\",\"meta_typography_line_height\":{\"unit\":\"em\",\"size\":1.21,\"sizes\":[]},\"meta_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"meta_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"posts_columns_mobile\":\"1\",\"post_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false},\"post_content_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"post_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"post_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"post_title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"post_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"post_text_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-blog-smart-listing\"}],\"isInner\":false}],\"isInner\":false}]'),
(1494,2607,'_elementor_page_assets','a:0:{}'),
(1495,2607,'_elementor_pro_version','3.21.3'),
(1497,2608,'_wp_page_template','elementor_header_footer'),
(1498,2608,'_elementor_edit_mode','builder'),
(1499,2608,'_elementor_template_type','wp-page'),
(1500,2608,'_elementor_version','3.21.8'),
(1501,2608,'_elementor_data','[{\"id\":\"f1defe6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"5f4c636\"}],\"structure\":\"20\",\"background_background\":\"gradient\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"097\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"background_color_b\":\"#333333\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"top left\"},\"elements\":[{\"id\":\"a1c1dc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"efd1b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start Accepting\\nCrypto Payments NOW\",\"header_size\":\"h1\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9502b1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"380 M+ Global cryptocurrency users\",\"_id\":\"7ae7090\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"20%+ New crypto users increased in 2022\",\"_id\":\"3303d9c\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"$ 10,000 Support orders with a large amount\",\"_id\":\"c6f5e96\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"text\":\"0 Chargeback There is no risk of fraud\",\"_id\":\"0e2a738\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"icon_color\":\"#0099EE\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b65a7fe\",\"elType\":\"container\",\"settings\":{\"container_type\":\"grid\",\"presetTitle\":\"Grid\",\"presetIcon\":\"eicon-container-grid\",\"grid_columns_grid\":{\"unit\":\"fr\",\"size\":2,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"jet_parallax_layout_list\":[],\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"85ac861\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"380 M+\",\"description_text\":\"Global cryptocurrency users\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62825a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"20%+\",\"description_text\":\"New crypto users increased in 2022\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1439f88\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"$ 10,000\",\"description_text\":\"Support orders with a large amount\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8634697\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"0 Chargeback\",\"description_text\":\"There is no risk of fraud\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"content_vertical_alignment_mobile\":\"middle\",\"text_align\":\"left\",\"text_align_mobile\":\"left\",\"primary_color\":\"#0099EE\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_color\":\"#509BF6\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"text_stroke_text_stroke_type\":\"yes\",\"description_color\":\"#FFFFFF\",\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5762035\",\"elType\":\"widget\",\"settings\":{\"text\":\"Accetp Crypto \\u279d\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"background_color\":\"#509BF6\",\"hover_color\":\"#2E2C39\",\"button_background_hover_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d10ce80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our Services\",\"align_mobile\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#2E2C39\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_flex_size\":\"none\",\"_flex_size_mobile\":\"none\",\"_flex_grow_mobile\":1,\"jet_family_widget_is_order_orientaion\":\"\",\"jet_family_widget_is_flex_basis\":\"\",\"jet_tricks_widget_parallax\":\"\",\"jet_tricks_widget_satellite\":\"\",\"jet_tricks_widget_tooltip\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8ed8fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4c3cb40\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/coin-wallet.webp\",\"id\":2516,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1246\",\"height\":\"694\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100},\"_flex_size\":\"none\",\"_offset_y\":{\"unit\":\"px\",\"size\":238,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0fe6712\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"cfeeeb3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6056ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/map.svg\",\"id\":10},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"margin\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"86\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0b37c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"With BTPayments You Get\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f7adc7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"946a6ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"50f3095\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"100% Money back guarantee\",\"selected_icon\":{\"value\":\"fas fa-shield-alt\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9567a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supported by Glocash, a fintech compay holding EMI license<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da58061\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"099cd2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Simple to use\",\"selected_icon\":{\"value\":\"fas fa-mouse-pointer\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"382f576\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Only 2 lines of code<\\/li><li>Onboarding success in 5 minutes<\\/li><li>170+ wallets are supported<\\/li><li>61 cryptos are supported<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b34eb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e9531c8\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"ee60edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"edabbfc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No fee for new account\",\"selected_icon\":{\"value\":\"fas fa-user-check\",\"library\":\"fa-solid\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3b530f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>There is no setup fee<\\/li><li>There is no monthly fee<\\/li><li>There are no hidden costs<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"d181343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":13,\"background_background\":\"classic\",\"background_color\":\"#509BF6\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"040\",\"left\":\"015\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3650c73\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"No limitations for industry\",\"selected_icon\":{\"value\":\"nc-icon-outline ui-2_menu-square\",\"library\":\"nc-icon-outline\"},\"_id\":\"87c823c\"}],\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddace93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Quickly onboard and validate<\\/li><li>Featured industries: live, dating, chat, etc.<\\/li><\\/ul>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cdcd7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"e4ac96d\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"083\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"08ac04e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"column_order_mobile\":2,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"054\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"91ab60c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted by hundreds of digital businesses.\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":578},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f0b3bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cryptocurrencies are the future of global trade and we want to ensure that we are prepared to move into this new digital era.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-4\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fa1eae6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u26a1 We support more than 170 wallets\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"edddfe9\"},{\"text\":\"\\u26a1 We support more than 54 currencies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0b8dc14\"},{\"text\":\"\\u26a1 Leading crypto service provider in the world\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e253f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f304e\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2557,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c1.png\"},{\"id\":2558,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c2.png\"},{\"id\":2559,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c3.png\"},{\"id\":2560,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c4.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"2d592dc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2561,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c5.png\"},{\"id\":2562,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c6.png\"},{\"id\":2563,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c7.png\"},{\"id\":2564,\"url\":\"http:\\/\\/btpayments.kinsta.cloud\\/wp-content\\/uploads\\/2024\\/06\\/c8.png\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"navigation\":\"none\",\"autoplay\":\"\",\"infinite\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56cb9da\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"jet_parallax_layout_list\":[]},\"elements\":[{\"id\":\"ee62af9\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQs\",\"align\":\"center\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c312c4b\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Can BTPayments be settled in USD?\",\"tab_content\":\"<p>Yes, whether you want to use digital currency or USD for settlement, BTPayments will fully support it.<\\/p>\",\"_id\":\"d9b8c18\"},{\"tab_title\":\"Is BTPayments safe?\",\"tab_content\":\"<p>BTPayments is a secure cryptocurrency payment platform, bridging traditional finance and the evolving Web3 world.<\\/p>\",\"_id\":\"39a9dec\"},{\"tab_title\":\"How BTPayments charges?\",\"tab_content\":\"<p>BTPayments charges only a 1% transaction fee on merchant sales and no monthly or annual fees. For example, for a 100 USDT transaction, BTPayments will deduct a handling fee of 1USDT and credit 99 USDT to the payee\'s account.<\\/p>\",\"_id\":\"b6640f5\"},{\"tab_title\":\"For withdrawals, are there any limits or fees?\",\"tab_content\":\"<p>BTPayments does not set withdrawal limits. For cryptocurrency withdrawals, BTPayments charges a gas fee of 2.5 units per transaction, with no amount limit.For fiat withdrawals, BTPayments charges a fee of 0.5%, regardless of the amount, as well as a fixed transfer fee of 25 USD.<\\/p>\",\"_id\":\"e767bd6\"},{\"tab_title\":\"What is settlement period and expected fund arrival time?\",\"tab_content\":\"<p>BTPayments operates on a T+1 settlement cycle. Withdrawals initiated before 5 AM (UTC) on a business day are settled the same day; those after 5 AM (UTC) are settled the next day. Withdrawals on non-business days are processed on the next business day.<\\/p>\",\"_id\":\"44b4d2f\"}],\"border_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_color\":\"#F3F3F3\",\"title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false},{\"id\":\"7d45819\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"2f611fc\"}],\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b95321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"55\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a83b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709?title=0&portrait=0&byline=0&autoplay=1\",\"vimeo_url\":\"https:\\/\\/player.vimeo.com\\/video\\/503227709\",\"aspect_ratio\":\"4-3\",\"autoplay\":\"yes\",\"loop\":\"yes\",\"thumbnail\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/businessman-man-people-woman-6563807-\\u2014-\\u043a\\u043e\\u043f\\u0438\\u044f-12.png\",\"id\":31},\"selected_play_button_icon\":{\"value\":\"\",\"library\":\"\"},\"play_button_accessibility\":\"Video play button\"},\"elements\":[],\"widgetType\":\"jet-video\"}],\"isInner\":false},{\"id\":\"67f2a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16.9\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b575\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>About us<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4677284\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unforgettable experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"41\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef1fd21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>All specialists have more than 10 years of experience in various fields. This allows us to solve maximum problems.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6fbc160\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Who We Are\",\"button_label_hover\":\"Who We Are\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-are\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"3b717fe\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"View Our services\",\"button_label_hover\":\"View Our services\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb69c5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b8b47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd9f65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743db56\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79e16f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to solve non-standard and complex problems, as well as problems that require an integrated approach and the participation of specialists from different subject areas.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d58b6f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f775421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"d4f49eb\"}],\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1d1e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b44c83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial advice\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/banking-expertise\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e798b0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We advise and in practice help in solving problems in two key business blocks: operational and financial management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f264089\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Audit of operating activities\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Set up your company\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"SME financial \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"},{\"text\":\"Microfinance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"d1c2bc0\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4c31ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"015\",\"bottom\":\"40\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6154317\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting services\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/consulting-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0c7b9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide various services: from one-time consultations to business management.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfe458d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Individual approach\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\" Solving non-standard problems\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\" Crisis management\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fdf096c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"color_link_hover\":\"#509BF6\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f7baba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product solutions\",\"header_size\":\"h3\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"04\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/product-solutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f06aacc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Design, manage and monitor the implementation of business projects. New Product Launch Strategy.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-14\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5572639\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Digital Transformation \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Knowledge Sharing \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"},{\"text\":\"Operational Analysis\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"12a3767\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e7d31\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"0bbabf7\"}],\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F9\",\"padding\":{\"unit\":\"px\",\"top\":\"093\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b8d97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d73966\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>So that? Can contact and discuss Your business?<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aeac170\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Our services \\u279d\",\"button_label_hover\":\"Our services \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":232,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#FFFFFF\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#509BF6\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"a87a179\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Get in touch \\u279d\",\"button_label_hover\":\"Get in touch \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"auto\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/contacts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false},{\"id\":\"315a520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":30,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"beb7fd0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"3eb5c2b\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/04\\/home_bg2.png\",\"id\":2037},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b79277\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f59f6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Best Services<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f8085f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We can help to improve your business performance\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5f9ab8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Business consulting and strategy development<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e1c265\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Free consultation \\u279d\",\"button_label_hover\":\"Free consultation \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":266,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#FFFFFF\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#2E2C39\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_content_alignment\":\"center\",\"button_alignment\":\"center\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1073c1d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"gap\":\"no\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"b95c715\"}],\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"087\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38174d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3657b5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices<\\/p>\",\"text_color\":\"#ABABB0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8aabf52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'ll suggest the plan that\'s right for your business\",\"title_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"816bce9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tell us your average monthly expenses and we\'ll suggest the plan, that\'s right for your business.<\\/p>\",\"text_color\":\"#2E2C39\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bc5a233\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"jet_parallax_layout_list\":[{\"jet_parallax_layout_image\":{\"url\":\"\"},\"_id\":\"29d7e07\"}],\"structure\":\"20\"},\"elements\":[{\"id\":\"f19232c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.058823529411764705)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"99\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[{\"id\":\"b21ece5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard\",\"subtitle\":\"Special range of services for small and medium businesses\",\"subtitle_html_tag\":\"h3\",\"price_prefix\":\"$\",\"price\":\"25\",\"price_suffix\":\"\\/m\",\"price_desc\":\"$250\\/years\",\"features_list\":[{\"item_text\":\"\",\"_id\":\"8e225d6\"}],\"selected_included_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"button_text\":\"\",\"button_url\":\"\",\"button_fold_text\":\"Hide\",\"button_unfold_text\":\"Show\",\"table_border_border\":\"\",\"table_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"table_padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#2E2C39\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.55,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"subtitle_color\":\"#2E2C39\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Inter\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"subtitle_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_prefix_color\":\"#509BF6\",\"price_prefix_typography_typography\":\"custom\",\"price_prefix_typography_font_family\":\"Inter\",\"price_prefix_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_prefix_typography_font_weight\":\"600\",\"price_prefix_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_prefix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_color\":\"#509BF6\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Inter\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"price_typography_font_weight\":\"600\",\"price_typography_line_height\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.4,\"sizes\":[]},\"price_suffix_color\":\"#509BF6\",\"price_suffix_typography_typography\":\"custom\",\"price_suffix_typography_font_family\":\"Inter\",\"price_suffix_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_suffix_typography_font_weight\":\"600\",\"price_suffix_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"price_suffix_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_color\":\"#509BF6\",\"price_desc_typography_typography\":\"custom\",\"price_desc_typography_font_family\":\"Inter\",\"price_desc_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"price_desc_typography_font_weight\":\"300\",\"price_desc_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"price_desc_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_desc_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"features_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"50\",\"bottom\":\"41\",\"left\":\"50\",\"isLinked\":false},\"features_typography_typography\":\"custom\",\"features_typography_font_family\":\"Inter\",\"features_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"features_typography_font_weight\":\"500\",\"features_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_alignment\":\"left\",\"inc_features_color\":\"#2E2C39\",\"inc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"inc_bullet_color\":\"#509BF6\",\"exc_bullet_icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"button_bg_color\":\"#509BF6\",\"button_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Inter\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_typography_font_weight\":\"600\",\"button_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_padding\":{\"unit\":\"px\",\"top\":\"027\",\"right\":\"044\",\"bottom\":\"027\",\"left\":\"044\",\"isLinked\":false},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"button_hover_bg_color\":\"#2E2C39\",\"button_hover_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-88\",\"left\":\"20\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_border_color\":\"#FFFFFF\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"_element_width\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"features_padding_tablet\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"014\",\"isLinked\":false},\"features_padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"features_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width_mobile\":\"inherit\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"selected_excluded_bullet_icon\":{\"value\":\"\",\"library\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"button_fold_text_accessibility\":\"Hide\",\"button_unfold_text_accessibility\":\"Show\"},\"elements\":[],\"widgetType\":\"jet-pricing-table\"},{\"id\":\"7250391\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Market research \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"edddfe9\"},{\"text\":\"Audit studies\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/wp-content\\/uploads\\/2021\\/03\\/check-1.svg\",\"id\":623},\"library\":\"svg\"},\"_id\":\"0b8dc14\"}],\"space_between\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_color\":\"#2E2C39\",\"text_indent\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"500\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.6,\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_color\":\"#509BF6\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"06\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":360,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"63dd105\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Start free trial \\u279d\",\"button_label_hover\":\"Start free trial \\u279d\",\"custom_size\":\"yes\",\"button_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"button_custom_height\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_box_shadow_box_shadow_type\":\"yes\",\"normal_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_box_shadow_box_shadow_type\":\"yes\",\"hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"normal_plane_box_shadow_box_shadow_type\":\"yes\",\"normal_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#2E2C39\",\"plane_hover_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"hover_plane_box_shadow_box_shadow_type\":\"yes\",\"hover_plane_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":40,\"blur\":64,\"spread\":0,\"color\":\"rgba(23, 24, 26, 0.10196078431372549)\"},\"normal_label_color\":\"#FFFFFF\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#FFFFFF\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"inherit\",\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_alignment\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jet-button\"},{\"id\":\"09660b9\",\"elType\":\"widget\",\"settings\":{\"button_label_normal\":\"Learn More\",\"button_label_hover\":\"Learn More\",\"button_alignment\":\"center\",\"normal_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_background_background\":\"classic\",\"normal_plane_background_color\":\"#6EC1E400\",\"normal_plane_border_border\":\"solid\",\"normal_plane_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"normal_plane_border_color\":\"#509BF6\",\"normal_plane_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"plane_hover_background_background\":\"classic\",\"plane_hover_background_color\":\"#54595F00\",\"plane_hover_border_border\":\"solid\",\"plane_hover_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"plane_hover_border_color\":\"#509BF6\",\"normal_label_color\":\"#2E2C39\",\"normal_label_typography_typography\":\"custom\",\"normal_label_typography_font_family\":\"Inter\",\"normal_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"normal_label_typography_font_weight\":\"600\",\"normal_label_typography_text_transform\":\"uppercase\",\"normal_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"normal_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hover_label_color\":\"#509BF6\",\"hover_label_typography_typography\":\"custom\",\"hover_label_typography_font_family\":\"Inter\",\"hover_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"hover_label_typography_font_weight\":\"600\",\"hover_label_typography_text_transform\":\"uppercase\",\"hover_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"hover_label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"button_url\":{\"url\":\"https:\\/\\/ld-wp73.template-help.com\\/wordpress\\/prod_30762\\/v1\\/what-we-do\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"jet-button\"}],\"isInner\":true},{\"id\":\"c76963c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"